1 2 3 4 5 6 7 8 9
#include <math.h> long double sqrtl(long double x) { /* FIXME: implement sqrtl in C. At least this works for now on * ARM (which uses ld64), the only arch without sqrtl asm * that's supported so far. */ return sqrt(x); }