rework langinfo code for ABI compat and for use by time code
[musl] / src / math / sqrtl.c
1 #include <math.h>
2
3 long double sqrtl(long double x)
4 {
5         /* FIXME: implement sqrtl in C. At least this works for now on
6          * ARM (which uses ld64), the only arch without sqrtl asm
7          * that's supported so far. */
8         return sqrt(x);
9 }