1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-08 02:02:23 +03:00

Wed May 22 00:40:50 1996 David Mosberger-Tang <davidm@azstarnet.com>

* sysdeps/alpha/__math.h (cabs): Remove underscores from struct
 	__cabs_complex member names in call to __hypot().
This commit is contained in:
Roland McGrath
1996-05-23 05:32:55 +00:00
parent 94765f9edc
commit a9dbc75c78

View 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