OSDN Git Service

libm/*: mass removal of:
[uclinux-h8/uclibc-ng.git] / libm / s_nearbyint.c
index 52ebbdb..1c28505 100644 (file)
 #include "math.h"
 #include "math_private.h"
 
-#ifdef __STDC__
-       double nearbyint(double x)
-#else
-       double nearbyint(x)
-       double x;
-#endif
+double nearbyint(double x)
 {
   return rint(x);
 }