summaryrefslogtreecommitdiff
path: root/src/complex/creal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/creal.c')
-rw-r--r--src/complex/creal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/complex/creal.c b/src/complex/creal.c
index 2bb91812..f6703040 100644
--- a/src/complex/creal.c
+++ b/src/complex/creal.c
@@ -1,6 +1,6 @@
#include <complex.h>
-double creal(double complex z)
+double (creal)(double complex z)
{
- return z;
+ return creal(z);
}