From 13e400b3559666b5e584bdf6f8450aad826b43ae Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 22 Mar 2012 15:54:55 -0400 Subject: add creal/cimag macros in complex.h (and use them in the functions defs) --- src/complex/crealf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/complex/crealf.c') diff --git a/src/complex/crealf.c b/src/complex/crealf.c index 078232f0..5dc3ff1d 100644 --- a/src/complex/crealf.c +++ b/src/complex/crealf.c @@ -1,6 +1,6 @@ #include -float crealf(float complex z) +float (crealf)(float complex z) { - return z; + return crealf(z); } -- cgit v1.2.1