summaryrefslogtreecommitdiff
path: root/libm
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-02-14 03:26:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-02-14 03:26:57 +0000
commit44d44d807ede85c53e05d88df82036b23c23e4a9 (patch)
tree579eeda0719161bb62e474979880e844ef8102cb /libm
parentf0653449186844ce9b2a0759b132f16001eeebab (diff)
math.h: fix libm_hidden_proto leak into sanitized headers
libm/s_nextafterf.c: use /* */ comments
Diffstat (limited to 'libm')
-rw-r--r--libm/s_nextafterf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libm/s_nextafterf.c b/libm/s_nextafterf.c
index 5fc44e31c..e0cb81613 100644
--- a/libm/s_nextafterf.c
+++ b/libm/s_nextafterf.c
@@ -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;
}