cosmopolitan/libc/math/sqrtl.c

8 lines
150 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#include "libc/math/math.h"
long double sqrtl(long double x)
{
/* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
return sqrt(x);
}