Wed May 22 00:40:50 1996 David Mosberger-Tang <davidm@azstarnet.com>
authorRoland McGrath <roland@gnu.org>
Thu, 23 May 1996 05:32:55 +0000 (05:32 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 23 May 1996 05:32:55 +0000 (05:32 +0000)
* sysdeps/alpha/__math.h (cabs): Remove underscores from struct
  __cabs_complex member names in call to __hypot().

sysdeps/alpha/__math.h

index 9aea9d7..50d8ac3 100644 (file)
@@ -46,7 +46,7 @@ extern __inline double
 cabs (struct __cabs_complex __z)
 {
   extern double __hypot (double, double);
-  return __hypot(__z.__x, __z.__y);
+  return __hypot(__z.x, __z.y);
 }
 #endif