9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
8 lines
140 B
C
8 lines
140 B
C
#include <math.h>
|
|
|
|
long double sqrtl(long double x)
|
|
{
|
|
/* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
|
|
return sqrt(x);
|
|
}
|