mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-13 21:02:47 -08:00
The definition of signbit() for MSVC was wrong.
This commit is contained in:
parent
b35d091b08
commit
bd75a757a0
1 changed files with 1 additions and 1 deletions
|
|
@ -408,7 +408,7 @@ typedef unsigned int uint32_t;
|
|||
#include <math.h>
|
||||
#ifndef isfinite
|
||||
# define isfinite(x) (finite(x))
|
||||
# define signbit(x) (_copysign(1.0,(x)))
|
||||
# define signbit(x) (_copysign(1.0,(x)) < 0)
|
||||
# define ECL_MATHERR_CLEAR
|
||||
# define ECL_MATHERR_TEST
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue