summaryrefslogtreecommitdiff
path: root/src/math/sqrtl.c
blob: 0645cca0cf95cdf23afee4cd03b87ca61fa88f62 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <math.h>

long double sqrtl(long double x)
{
	/* FIXME: implement sqrtl in C. At least this works for now on
	 * ARM (which uses ld64), the only arch without sqrtl asm
	 * that's supported so far. */
	return sqrt(x);
}