remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / math / sqrtl.c
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..83a8f80c9984dc7b02e2de6d73f87ed58b566b8b 100644 (file)
@@ -0,0 +1,7 @@
+#include <math.h>
+
+long double sqrtl(long double x)
+{
+       /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
+       return sqrt(x);
+}