various minor style fixes
[libm] / src / math / powl.c
index c829c18..0f0d894 100644 (file)
@@ -207,7 +207,7 @@ long double powl(long double x, long double y)
        if (y == 1.0L)
                return x;
 
-       // FIXME: this is wrong, see pow special cases in posix2008
+       // FIXME: this is wrong, see pow special cases in c99 F.9.4.4
        if (!isfinite(y) && (x == -1.0L || x == 1.0L) )
                return y - y;   /* +-1**inf is NaN */
        if (x == 1.0L)