summaryrefslogtreecommitdiff
path: root/src/complex/csqrtl.c
blob: 0600ef3bebcd31389a65a10edb21051843503ab1 (plain) (blame)
1
2
3
4
5
6
7
#include "libm.h"

//FIXME
long double complex csqrtl(long double complex z)
{
	return csqrt(z);
}