diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 3 | ||||
-rw-r--r-- | math/fenv.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/math/Makefile b/math/Makefile index 839e441354..87b47ab1b6 100644 --- a/math/Makefile +++ b/math/Makefile @@ -67,7 +67,8 @@ distribute += $(long-m-yes:=.c) # These functions are in libc instead of libm because __printf_fp # calls them, so any program using printf will need them linked in, # and we don't want to have to link every program with -lm. -calls = s_isinf s_isnan s_finite s_copysign s_modf s_scalbn s_frexp s_ldexp +calls = s_isinf s_isnan s_finite s_copysign s_modf s_scalbn s_frexp s_ldexp \ + s_signbit routines = $(calls) $(calls:=f) $(long-c-$(long-double-fcts)) long-c-yes = $(calls:=l) distribute += $(long-c-yes:=.c) diff --git a/math/fenv.h b/math/fenv.h index c065d662e0..e4dff29a2e 100644 --- a/math/fenv.h +++ b/math/fenv.h @@ -71,7 +71,7 @@ extern void fegetexceptflag __P ((fexcept_t *__flagp, int __excepts)); /* Raise the supported exceptions represented by EXCEPTS. */ extern void feraiseexcept __P ((int __excepts)); -/* Set complete status for exceptions inidicated by EXCEPTS according to +/* Set complete status for exceptions indicated by EXCEPTS according to the representation in the object pointed to by FLAGP. */ extern void fesetexceptflag __P ((__const fexcept_t *__flagp, int __excepts)); |