diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2005-05-10 08:39:07 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2005-05-10 08:39:07 +0000 |
commit | 96c837f0ca50aa9e625fdbc5fb9ba088fc99405d (patch) | |
tree | 4a4945bfbfc3135bbb9cc10a8050eb9bb085891e /winsup/mingw/mingwex/math/nextafterl.c | |
parent | 5b91f0a6efc120a2c7b26000347f4a2876577fa8 (diff) | |
download | cygnal-96c837f0ca50aa9e625fdbc5fb9ba088fc99405d.tar.gz cygnal-96c837f0ca50aa9e625fdbc5fb9ba088fc99405d.tar.bz2 cygnal-96c837f0ca50aa9e625fdbc5fb9ba088fc99405d.zip |
* mingwex/math/nexttoward.c: New file.
* mingwex/math/nexttowardf.c: New file.
* mingwex/math/nextafterl.c: Add nexttowardl aliaa.
* mingwex/Makefile.in (MATH_DISTFILES): Add nexttoward.c,
mexttowardf.c,
(MATH_OBJS): Add nexttoward.o, mexttowardf.o,
* include/math.h (nexttoward, nextowardf, nexttowardl): Add
prototypes.
Diffstat (limited to 'winsup/mingw/mingwex/math/nextafterl.c')
-rwxr-xr-x | winsup/mingw/mingwex/math/nextafterl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/mingw/mingwex/math/nextafterl.c b/winsup/mingw/mingwex/math/nextafterl.c index 84be44fb2..eaf6a3f03 100755 --- a/winsup/mingw/mingwex/math/nextafterl.c +++ b/winsup/mingw/mingwex/math/nextafterl.c @@ -59,3 +59,7 @@ nextafterl (long double x, long double y) return u.ld; } + +/* nexttowardl is the same function with a different name. */ +long double +nexttowardl (long double, long double) __attribute__ ((alias("nextafterl"))); |