summaryrefslogtreecommitdiffstats
path: root/libm/s_isinf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/s_isinf.c')
-rw-r--r--libm/s_isinf.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libm/s_isinf.c b/libm/s_isinf.c
index 99a1cdf18..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);
@@ -22,5 +21,3 @@ __isinf (double x)
return ~(lx >> 31) & (hx >> 30);
}
libm_hidden_def(__isinf)
-weak_alias (__isinf, isinf)
-libm_hidden_weak(isinf)