diff options
Diffstat (limited to 'math/cabsf.c')
-rw-r--r-- | math/cabsf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/cabsf.c b/math/cabsf.c index 2ea2660..ea02b8f 100644 --- a/math/cabsf.c +++ b/math/cabsf.c @@ -1,5 +1,5 @@ /* Return the complex absolute value of float 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> float -__cabsf (float complex z) +__cabsf (float _Complex z) { return __hypotf (__real__ z, __imag__ z); } |