summary refs log tree commit diff
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/Makefile4
-rw-r--r--math/Versions2
-rw-r--r--math/bits/mathcalls.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/math/Makefile b/math/Makefile
index ffd7524205..56124e73fa 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+# Copyright (C) 1996, 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
@@ -46,7 +46,7 @@ libm-calls = e_acos e_acosh e_asin e_atan2 e_atanh e_cosh e_exp e_fmod	\
 	     k_cos k_rem_pio2 k_sin k_tan s_asinh s_atan s_cbrt		\
 	     s_ceil s_copysign s_cos s_erf s_expm1 s_fabs s_finite	\
 	     s_floor s_frexp s_ilogb s_ldexp s_log1p s_logb 		\
-	     s_modf s_nextafter s_nextafterx s_rint s_scalbn s_scalbln	\
+	     s_modf s_nextafter s_nexttoward s_rint s_scalbn s_scalbln	\
 	     s_significand s_sin s_tan s_tanh w_acos w_acosh w_asin	\
 	     w_atan2 w_atanh w_cosh w_drem w_exp w_exp2 w_exp10 w_fmod	\
 	     w_tgamma w_hypot w_j0 w_j1 w_jn w_lgamma w_lgamma_r	\
diff --git a/math/Versions b/math/Versions
index 104c7e5a30..8bed0264f7 100644
--- a/math/Versions
+++ b/math/Versions
@@ -103,7 +103,7 @@ libm {
     log2; log2f; log2l;
     nan; nanf; nanl;
     nearbyint; nearbyintf; nearbyintl;
-    nextafterx; nextafterxf; nextafterxl;
+    nexttoward; nexttowardf; nexttowardl;
     pow10; pow10f; pow10l;
     remquo; remquof; remquol;
     lrint; lrintf; lrintl;
diff --git a/math/bits/mathcalls.h b/math/bits/mathcalls.h
index 39979cf437..3f1d5b1223 100644
--- a/math/bits/mathcalls.h
+++ b/math/bits/mathcalls.h
@@ -1,5 +1,5 @@
 /* Prototype declarations for math functions; helper file for <math.h>.
-   Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1996, 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
@@ -253,7 +253,7 @@ __MATHCALL (rint,, (_Mdouble_ __x));
 /* Return X + epsilon if X < Y, X - epsilon if X > Y.  */
 __MATHCALLX (nextafter,, (_Mdouble_ __x, _Mdouble_ __y), (__const__));
 # ifdef __USE_ISOC9X
-__MATHCALLX (nextafterx,, (_Mdouble_ __x, long double __y), (__const__));
+__MATHCALLX (nexttoward,, (_Mdouble_ __x, long double __y), (__const__));
 # endif
 
 /* Return the remainder of integer divison X / Y with infinite precision.  */