Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
math
/
sqrtl.c
blob: f21f9073f10510cf2c3365cb6fb1456d46b37dbc [
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
);
}