diff options
Diffstat (limited to 'sysdeps/libm-ieee754')
-rw-r--r-- | sysdeps/libm-ieee754/w_cabsl.c | 2 | ||||
-rw-r--r-- | sysdeps/libm-ieee754/w_hypotl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-ieee754/w_cabsl.c b/sysdeps/libm-ieee754/w_cabsl.c index e82130d46d..21ef860a95 100644 --- a/sysdeps/libm-ieee754/w_cabsl.c +++ b/sysdeps/libm-ieee754/w_cabsl.c @@ -11,7 +11,7 @@ long double __cabsl(z) - struct __cabsl_complex z; + struct __cabs_complexl z; { return __hypotl(z.x, z.y); } diff --git a/sysdeps/libm-ieee754/w_hypotl.c b/sysdeps/libm-ieee754/w_hypotl.c index 9f92e950d6..2ec215fd13 100644 --- a/sysdeps/libm-ieee754/w_hypotl.c +++ b/sysdeps/libm-ieee754/w_hypotl.c @@ -27,7 +27,7 @@ static char rcsid[] = "$NetBSD: $"; #ifdef __STDC__ - long double __hypotl(longdouble x, long double y)/* wrapper hypotl */ + long double __hypotl(long double x, long double y)/* wrapper hypotl */ #else long double __hypotl(x,y) /* wrapper hypotl */ long double x,y; |