diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-09 14:14:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-09 14:14:20 +0000 |
commit | 356d71003eeb28bc90417f769c0396a9dfc5b0da (patch) | |
tree | 8b217c5703903b4023a8cd6d7653e8a1cc942869 /sysdeps/libm-ieee754/w_lgamma.c | |
parent | 73237de3761836016f67a10121ecc97a5d45cac4 (diff) | |
download | glibc-356d71003eeb28bc90417f769c0396a9dfc5b0da.tar.gz glibc-356d71003eeb28bc90417f769c0396a9dfc5b0da.tar.xz glibc-356d71003eeb28bc90417f769c0396a9dfc5b0da.zip |
Update.
1998-04-07 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sysdeps/unix/sysv/linux/bits/sockunion.h: Fix error message. * manual/socket.texi (Interface Naming): Fix typo. 1998-04-07 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/examples/filesrv.c (main): Remove filename first. * manual/socket.texi (Address Formats): Change ?F_LOCAL, ?F_FILE, ?F_UNIX. * manual/examples/mkfsock.c (make_named_socket): Use PF_LOCAL instead of PF_UNIX. * manual/examples/filecli.c (main): Use AF_LOCAL instead of AF_UNIX. 1998-04-09 Ulrich Drepper <drepper@cygnus.com> * sysdeps/libm-ieee754/s_signgam.c: Define __signgam and make signgam weak alias. * sysdeps/libm-ieee754/w_lgamma.c: Use __signgam not signgam. * sysdeps/libm-ieee754/w_lgammaf.c: Likewise. * sysdeps/libm-ieee754/w_lgammal.c: Likewise. * sysdeps/libm-ieee754/w_gamma.c: Likewise. * sysdeps/libm-ieee754/w_gammaf.c: Likewise. * sysdeps/libm-ieee754/w_gammal.c: Likewise. * login/utmp_daemon.c (open_socket): Use __connect not connect. * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h (SA_LEN): New macro. * Makerules: Re-add missing rule for $(objpfx)stamp.oS.
Diffstat (limited to 'sysdeps/libm-ieee754/w_lgamma.c')
-rw-r--r-- | sysdeps/libm-ieee754/w_lgamma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/libm-ieee754/w_lgamma.c b/sysdeps/libm-ieee754/w_lgamma.c index be8a174742..fbb933f9fc 100644 --- a/sysdeps/libm-ieee754/w_lgamma.c +++ b/sysdeps/libm-ieee754/w_lgamma.c @@ -23,7 +23,7 @@ static char rcsid[] = "$NetBSD: w_lgamma.c,v 1.6 1995/05/10 20:49:24 jtc Exp $"; #include "math.h" #include "math_private.h" -extern int signgam; +extern int __signgam; #ifdef __STDC__ double __lgamma(double x) @@ -33,10 +33,10 @@ extern int signgam; #endif { #ifdef _IEEE_LIBM - return __ieee754_lgamma_r(x,&signgam); + return __ieee754_lgamma_r(x,&__signgam); #else double y; - y = __ieee754_lgamma_r(x,&signgam); + y = __ieee754_lgamma_r(x,&__signgam); if(_LIB_VERSION == _IEEE_) return y; if(!__finite(y)&&__finite(x)) { if(__floor(x)==x&&x<=0.0) |