1
0

sqrtl.c 228 B

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