mirror of
https://github.com/fluencelabs/musl
synced 2025-06-29 14:42:01 +00:00
* use new ldshape union consistently * add ld128 support to frexpl * simplify sqrtl comment (ld64 is not just arm)
8 lines
140 B
C
8 lines
140 B
C
#include <math.h>
|
|
|
|
long double sqrtl(long double x)
|
|
{
|
|
/* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
|
|
return sqrt(x);
|
|
}
|