mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-21 05:29:02 +00:00
7 lines
150 B
C
7 lines
150 B
C
#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);
|
|
}
|