diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-01-29 16:23:28 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-01-29 16:54:46 +0100 |
commit | 53bce1b5f9f7a78076798acbe11f438d063b5e04 (patch) | |
tree | aab6bd8175498ed782a41d8b85a45212b4b066d6 /sysdeps/m68k/m680x0 | |
parent | 2aee89493501536e597725caf45b428fa6567b68 (diff) | |
download | glibc-53bce1b5f9f7a78076798acbe11f438d063b5e04.tar.gz |
m68k: remove __STDC__ conditionals
Diffstat (limited to 'sysdeps/m68k/m680x0')
-rw-r--r-- | sysdeps/m68k/m680x0/fpu/s_nextafterl.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sysdeps/m68k/m680x0/fpu/s_nextafterl.c b/sysdeps/m68k/m680x0/fpu/s_nextafterl.c index 70ab5a4784..dcccdf1762 100644 --- a/sysdeps/m68k/m680x0/fpu/s_nextafterl.c +++ b/sysdeps/m68k/m680x0/fpu/s_nextafterl.c @@ -29,12 +29,7 @@ static char rcsid[] = "$NetBSD: $"; #include "math.h" #include "math_private.h" -#ifdef __STDC__ - long double __nextafterl(long double x, long double y) -#else - long double __nextafterl(x,y) - long double x,y; -#endif +long double __nextafterl(long double x, long double y) { int32_t ix,iy,esx,esy; u_int32_t hx,hy,lx,ly; |