summaryrefslogtreecommitdiff
path: root/math/s_nexttowardf.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-01-27 17:27:55 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-01-27 17:29:45 +0000
commit8db218828187d58575c509b6ed3da0cad9f73519 (patch)
tree193c89c1df3a62941623e77426285d802a2cfcd2 /math/s_nexttowardf.c
parent43455e09166350b1237d2168d1b008c9f47ebaf0 (diff)
Remove __STDC__ conditionals from libm.
Diffstat (limited to 'math/s_nexttowardf.c')
-rw-r--r--math/s_nexttowardf.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/math/s_nexttowardf.c b/math/s_nexttowardf.c
index 0494d1a4e9..fb008d579c 100644
--- a/math/s_nexttowardf.c
+++ b/math/s_nexttowardf.c
@@ -24,13 +24,7 @@
#include <math_private.h>
#include <float.h>
-#ifdef __STDC__
- float __nexttowardf(float x, long double y)
-#else
- float __nexttowardf(x,y)
- float x;
- long double y;
-#endif
+float __nexttowardf(float x, long double y)
{
int32_t hx,hy,ix,iy;
u_int32_t ly;