diff options
Diffstat (limited to 'math/cabs.c')
-rw-r--r-- | math/cabs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/cabs.c b/math/cabs.c index cf775ded95..e91258c1dc 100644 --- a/math/cabs.c +++ b/math/cabs.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of double complex 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. @@ -22,7 +22,7 @@ #include <math.h> double -__cabs (double complex z) +__cabs (double _Complex z) { return __hypot (__real__ z, __imag__ z); } |