diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-05 03:29:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-05 03:29:45 +0000 |
commit | 58e071515a45fb23bad4298512bb2951fe41dbc5 (patch) | |
tree | 7316b76d0f0512bc90f6b6b73c0304a6ecabed33 /sysdeps/libm-ieee754 | |
parent | ee188d555b8c32ad9704a7440cab400af967292f (diff) | |
download | glibc-58e071515a45fb23bad4298512bb2951fe41dbc5.zip glibc-58e071515a45fb23bad4298512bb2951fe41dbc5.tar.gz glibc-58e071515a45fb23bad4298512bb2951fe41dbc5.tar.bz2 |
* math/Makefile (libm-support, libm-calls): New variables.
(libm-routines): Construct this from those.
(calls): New variable.
(routines): Construct this from it.
* resolv/res_debug.c: Add missing #include <ctype.h>.
* sysdeps/unix/getlogin.c: Must pass struct utmp ptr to getutline_r.
* sysdeps/unix/getlogin_r.c: Likewise.
* sysdeps/libm-ieee754/w_hypotl.c: Fix typo.
* sysdeps/libm-ieee754/w_cabsl.c: __cabsl_complex -> __cabs_complexl
* math/Makefile (long-m-routines): Define recursive variable as
$(long-m-$(long-double-fcts)).
(long-m-yes): Put list of routines here.
(long-c-routines, long-c-yes): Likewise.
* sysdeps/unix/sysv/linux/schedbits.h: File removed.
* sysdeps/i386/Makefile (long-double-fcts): New variable, set to yes.
* sysdeps/m68k/Makefile: Likewise.
* math/Makefile [$(long-double-fcts)!=yes] (CPPFLAGS): Append
-DNO_LONG_DOUBLE.
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 e82130d..21ef860 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 9f92e95..2ec215f 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; |