aboutsummaryrefslogtreecommitdiff
path: root/math/cimag.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/cimag.c')
-rw-r--r--math/cimag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/cimag.c b/math/cimag.c
index 13efa1476e..ddd9b00708 100644
--- a/math/cimag.c
+++ b/math/cimag.c
@@ -1,5 +1,5 @@
/* Return imaginary part of complex double value.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -21,7 +21,7 @@
#include <complex.h>
double
-__cimag (double complex z)
+__cimag (double _Complex z)
{
return __imag__ z;
}