add creal/cimag macros in complex.h (and use them in the functions defs)
[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);
 }