support configuring cross compiling with CROSS_COMPILE prefix variable
[musl] / src / complex / creall.c
index 56e6409..fd9dc34 100644 (file)
@@ -1,6 +1,6 @@
 #include <complex.h>
 
-long double creall(long double complex z)
+long double (creall)(long double complex z)
 {
-       return z;
+       return creall(z);
 }