Sign in
cobalt
/
cobalt
/
cf191b148f6a83454a62c5b73e5db05ad9cd362b
/
.
/
third_party
/
musl
/
src
/
math
/
sqrtl.c
blob: 83a8f80c9984dc7b02e2de6d73f87ed58b566b8b [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
sqrtl
(
long
double
x
)
{
/* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
return
sqrt
(
x
);
}