diff options
Diffstat (limited to 'src/complex/crealf.c')
-rw-r--r-- | src/complex/crealf.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <complex.h> -float crealf(float complex z) +float (crealf)(float complex z) { - return z; + return crealf(z); } |