fix fesetenv(FE_DFL_ENV) on mips
[musl] / src / math / sqrtl.c
index e69de29..83a8f80 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);
+}