OSDN Git Service

mkostemp: fix implementation
[uclinux-h8/uClibc.git] / libm / s_remquo.c
index 18853e2..f72c56f 100644 (file)
@@ -7,14 +7,7 @@
 #include "math.h"
 #include "math_private.h"
 
-libm_hidden_proto(remquo)
-#ifdef __STDC__
-       double remquo(double x, double y, int *quo)     /* wrapper remquo */
-#else
-       double remquo(x,y,quo)                  /* wrapper remquo */
-       double x,y;
-        int *quo;
-#endif
+double remquo(double x, double y, int *quo)    /* wrapper remquo */
 {
         int signx, signy, signres;
         int mswx;