]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 2 Aug 1999 23:56:41 +0000 (23:56 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 2 Aug 1999 23:56:41 +0000 (23:56 +0000)
1999-08-02  Ulrich Drepper  <drepper@cygnus.com>

* sysdeps/generic/s_nexttowardf.c: Fix typo.

ChangeLog
sysdeps/generic/s_nextafter.c
sysdeps/generic/s_nexttowardf.c

index 793a07cd8efe998033bab8c801474c3b919fa887..d1139184934f5b1a16af40bbd4a203a922c77376 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-08-02  Ulrich Drepper  <drepper@cygnus.com>
+
+       * sysdeps/generic/s_nexttowardf.c: Fix typo.
+
 1999-08-02  Jakub Jelinek  <jj@ultra.linux.cz>
 
        * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (__sigaction):
index 996b5ceca3d8de17019be22c5c3691e038dca194..8ddcbe54139cf352ca5fa73b4635ec54ed8fb9c6 100644 (file)
@@ -85,6 +85,8 @@ weak_alias (__nextafter, nextafter)
 #ifdef NO_LONG_DOUBLE
 strong_alias (__nextafter, __nextafterl)
 weak_alias (__nextafter, nextafterl)
+#undef __nexttoward
 strong_alias (__nextafter, __nexttoward)
+#undef nexttoward
 weak_alias (__nextafter, nexttoward)
 #endif
index f4cf18d06e4880097f4f1b048cf1ad1c78bfbce7..56cc04c10b55d7a85f957b6e6878304b27b82bf5 100644 (file)
@@ -39,8 +39,8 @@
        ix = hx&0x7fffffff;             /* |x| */
        iy = hy&0x7fffffff;             /* |y| */
 
-       if(((ix>=0x7f800000) ||                             /* x is nan */
-          ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0))     /* y is nan */
+       if((ix>=0x7f800000) ||                             /* x is nan */
+          ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0))    /* y is nan */
           return x+y;
        if((long double) x==y) return y;        /* x=y, return y */
        if(ix==0) {                             /* x == 0 */