mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 10:01:38 +00:00
10 lines
228 B
C
10 lines
228 B
C
#include <math.h>
|
|
|
|
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. */
|
|
return sqrt(x);
|
|
}
|