blob: 8eedfee1044247d4000a73567a8af44c7e1094f0 [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);
}