about summary refs log tree commit diff
path: root/sysdeps/ieee754/flt-32/s_fabsf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_fabsf.c')
-rw-r--r--sysdeps/ieee754/flt-32/s_fabsf.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sysdeps/ieee754/flt-32/s_fabsf.c b/sysdeps/ieee754/flt-32/s_fabsf.c
index 6b1451379f..b6a02da184 100644
--- a/sysdeps/ieee754/flt-32/s_fabsf.c
+++ b/sysdeps/ieee754/flt-32/s_fabsf.c
@@ -24,12 +24,7 @@ static char rcsid[] = "$NetBSD: s_fabsf.c,v 1.4 1995/05/10 20:47:15 jtc Exp $";
 #include "math.h"
 #include "math_private.h"
 
-#ifdef __STDC__
-	float __fabsf(float x)
-#else
-	float __fabsf(x)
-	float x;
-#endif
+float __fabsf(float x)
 {
 	u_int32_t ix;
 	GET_FLOAT_WORD(ix,x);