diff options
Diffstat (limited to 'math/cabsl.c')
-rw-r--r-- | math/cabsl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/cabsl.c b/math/cabsl.c index 1f3554cef2..15e1274990 100644 --- a/math/cabsl.c +++ b/math/cabsl.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of long 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> long double -__cabsl (long double complex z) +__cabsl (long double _Complex z) { return __hypotl (__real__ z, __imag__ z); } |