sqrtl.c 140 字节
Newer Older
C
c00346986 已提交
1 2 3 4 5 6 7
#include <math.h>

long double sqrtl(long double x)
{
	/* FIXME: implement in C, this is for LDBL_MANT_DIG == 64 only */
	return sqrt(x);
}