OSDN Git Service

ARC: Make vfork weak in libc
[uclinux-h8/uClibc.git] / libm / s_fmax.c
index 61ec12d..21dfaa9 100644 (file)
@@ -7,14 +7,7 @@
 #include "math.h"
 #include "math_private.h"
 
-libm_hidden_proto(fmax)
-#ifdef __STDC__
-       double fmax(double x, double y)
-#else
-       double fmax(x,y)
-       double x;
-       double y;
-#endif
+double fmax(double x, double y)
 {
   if (__fpclassify(x) == FP_NAN)
     return x;