OSDN Git Service

math.h: fix libm_hidden_proto leak into sanitized headers
[uclinux-h8/uClibc.git] / libm / s_nextafterf.c
index 5fc44e3..e0cb816 100644 (file)
@@ -33,12 +33,12 @@ float nextafterf(float x, float y)
                return y;
 
        if (ix == 0) { /* x == 0? */
-// glibc 2.4 does not seem to set underflow?
-//             float u;
+/* glibc 2.4 does not seem to set underflow? */
+/*             float u; */
                /* return +-minsubnormal */
                SET_FLOAT_WORD(x, (hy & 0x80000000) | 1);
-//             u = x * x; /* raise underflow flag */
-//             math_force_eval(u);
+/*             u = x * x;     raise underflow flag */
+/*             math_force_eval(u); */
                return x;
        }