1#include <math.h>
2
3long double sqrtl(long double x) {
4    /* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
5    return sqrt(x);
6}
7