Initial import
This commit is contained in:
7
libc/math/sqrtl.c
Normal file
7
libc/math/sqrtl.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user