]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 19 Jan 1999 12:54:50 +0000 (12:54 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 19 Jan 1999 12:54:50 +0000 (12:54 +0000)
1999-01-19  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

* math/tgmath.h (nexttoward): Rename nextafterx to nexttoward.

ChangeLog
INTERFACE
NEWS
math/tgmath.h

index f7024b914fb14c04656ba8c2b10caa684ab631c7..48ff9642b6eb7eab94d88eb7960b11fdd813a2d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-01-19  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
+
+       * math/tgmath.h (nexttoward): Rename nextafterx to nexttoward.
+
 1999-01-19  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Add baud rates >
index 40bbb1e76c365b3c42998d0f7d904629af2590a6..7607d783b2919b51e29db091bf7ee068f0d17e44 100644 (file)
--- a/INTERFACE
+++ b/INTERFACE
@@ -848,8 +848,9 @@ nanosleep                   nanosleep
 nextafter                      nextafter
 nextafterf                     nextafterf
 nextafterl                     nextafterl
-                             > nextafterx                      NEW: ISO C 9x
-                             > nextafterxf                     NEW: ISO C 9x
+                             > nexttoward                      NEW: ISO C 9x
+                             > nexttowardf                     NEW: ISO C 9x
+                             > nexttowardl                     NEW: ISO C 9x
 nfsservctl                     nfsservctl
                              > nftw                            NEW: Unix98
                              > nftw64                          NEW: LFS
@@ -1210,7 +1211,6 @@ strerror_r                        strerror_r
 strfmon                                strfmon
 strfry                         strfry
 strftime                       strftime
-                             > strfxtime                       NEW: ISO C 9x
 strlen                         strlen
 strncasecmp                    strncasecmp
 strncat                                strncat
diff --git a/NEWS b/NEWS
index f4d79f3a5b3bc1373d5c1e65d8f02745f6481859..c1571d4f2b7524d5cc3072c54561011220a60516 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -320,8 +320,9 @@ nearbyintf                  NEW: ISO C 9x
 nearbyintl                     NEW: ISO C 9x
 netname2host                   NEW: Secure RPC
 netname2user                   NEW: Secure RPC
-nextafterx                     NEW: ISO C 9x
-nextafterxf                    NEW: ISO C 9x
+nexttoward                     NEW: ISO C 9x
+nexttowardf                    NEW: ISO C 9x
+nexttowardl                    NEW: ISO C 9x
 nftw                           NEW: Unix98
 nftw64                         NEW: LFS
 open64                         NEW: LFS
@@ -377,7 +378,6 @@ statfs64                    NEW: LFS
 statvfs                                NEW: Unix98
 statvfs64                      NEW: LFS
 strcasestr                     NEW: GNU ext.
-strfxtime                      NEW: ISO C 9x
 strtoimax                      NEW: ISO C 9x
 strtoumax                      NEW: ISO C 9x
 strverscmp                     NEW: GNU ext.
index d15a75d8d3a486a4b01cd574672922872b0aa3d0..1a6591e7999dfd546081c8f21810dd314bc4ca4d 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 
 /* Return X + epsilon if X < Y, X - epsilon if X > Y.  */
 #define nextafter(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, nextafter)
-#define nextafterx(Val1, Val2) \
-     __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, nextafterx)
+#define nexttoward(Val1, Val2) \
+     __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, nexttoward)
 
 /* Return the remainder of integer divison X / Y with infinite precision.  */
 #define remainder(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, remainder)