diff options
Diffstat (limited to 'libm/s_isinf.c')
-rw-r--r-- | libm/s_isinf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libm/s_isinf.c b/libm/s_isinf.c index b73aa6696..62e5263bb 100644 --- a/libm/s_isinf.c +++ b/libm/s_isinf.c @@ -12,8 +12,7 @@ #include "math.h" #include "math_private.h" -int -__isinf (double x) +int __isinf(double x) { int32_t hx,lx; EXTRACT_WORDS(hx,lx,x); |