glibc/sysdeps/ieee754/ldbl-opt/nldbl-csqrt.c

10 lines
132 B
C

#include "nldbl-compat.h"
#include <complex.h>
double _Complex
attribute_hidden
csqrtl (double _Complex x)
{
return csqrt (x);
}