From: Roland McGrath Date: Thu, 23 May 1996 05:32:55 +0000 (+0000) Subject: Wed May 22 00:40:50 1996 David Mosberger-Tang X-Git-Tag: upstream/2.30~10627^2~3826 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9dbc75c78c145cafc79e6b94b3227c3eab08db9;p=external%2Fglibc.git Wed May 22 00:40:50 1996 David Mosberger-Tang * sysdeps/alpha/__math.h (cabs): Remove underscores from struct __cabs_complex member names in call to __hypot(). --- diff --git a/sysdeps/alpha/__math.h b/sysdeps/alpha/__math.h index 9aea9d7..50d8ac3 100644 --- a/sysdeps/alpha/__math.h +++ b/sysdeps/alpha/__math.h @@ -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