summaryrefslogtreecommitdiff
path: root/src/complex/creall.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-22 15:54:55 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-22 15:54:55 -0400
commit13e400b3559666b5e584bdf6f8450aad826b43ae (patch)
treefb19a9f228b2a78dc8e8afc8f7d3439b0865c736 /src/complex/creall.c
parent132f0a00831d3b64cc6ae35df69d6865516c64b5 (diff)
downloadmusl-13e400b3559666b5e584bdf6f8450aad826b43ae.tar.gz
add creal/cimag macros in complex.h (and use them in the functions defs)
Diffstat (limited to 'src/complex/creall.c')
-rw-r--r--src/complex/creall.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/complex/creall.c b/src/complex/creall.c
index 56e64097..fd9dc347 100644
--- a/src/complex/creall.c
+++ b/src/complex/creall.c
@@ -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);
}