remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / math / sqrtl.c
index 0645cca0cf95cdf23afee4cd03b87ca61fa88f62..83a8f80c9984dc7b02e2de6d73f87ed58b566b8b 100644 (file)
@@ -2,8 +2,6 @@
 
 long double sqrtl(long double x)
 {
-       /* FIXME: implement sqrtl in C. At least this works for now on
-        * ARM (which uses ld64), the only arch without sqrtl asm
-        * that's supported so far. */
+       /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
        return sqrt(x);
 }