/* 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.
#include <math.h>
double
-__cabs (double complex z)
+__cabs (double _Complex z)
{
return __hypot (__real__ z, __imag__ z);
}