Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/lib/libm/src Also pull up rev 1.15 and 1.16 for ticket #217:



details:   https://anonhg.NetBSD.org/src/rev/41a74bcbdab5
branches:  netbsd-8
changeset: 850973:41a74bcbdab5
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Aug 29 15:07:31 2017 +0000

description:
Also pull up rev 1.15 and 1.16 for ticket #217:

On systems without __HAVE_LONG_DOUBLE, alias nexttoward() to nextafter().

diffstat:

 lib/libm/src/s_nextafter.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r ecf769c92d07 -r 41a74bcbdab5 lib/libm/src/s_nextafter.c
--- a/lib/libm/src/s_nextafter.c        Tue Aug 29 15:05:55 2017 +0000
+++ b/lib/libm/src/s_nextafter.c        Tue Aug 29 15:07:31 2017 +0000
@@ -12,7 +12,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBM_SCCS) && !defined(lint)
-__RCSID("$NetBSD: s_nextafter.c,v 1.14 2014/03/18 18:20:37 riastradh Exp $");
+__RCSID("$NetBSD: s_nextafter.c,v 1.14.18.1 2017/08/29 15:07:31 martin Exp $");
 #endif
 
 /* IEEE functions
@@ -27,6 +27,7 @@
 
 #ifndef __HAVE_LONG_DOUBLE
 __strong_alias(nextafterl, nextafter)
+__strong_alias(nexttoward, nextafter)
 #endif
 
 double



Home | Main Index | Thread Index | Old Index