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/include/math.h | |
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/include/math.h')
-rw-r--r-- | winsup/mingw/include/math.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index 9f1531dd7..2f39aeb3a 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -723,7 +723,10 @@ extern double __cdecl nextafter (double, double); /* in libmoldname.a */ extern float __cdecl nextafterf (float, float); extern long double __cdecl nextafterl (long double, long double); -/* 7.12.11.4 The nexttoward functions: TODO */ +/* 7.12.11.4 The nexttoward functions */ +extern double __cdecl nexttoward (double, long double); +extern float __cdecl nexttowardf (float, long double); +extern long double __cdecl nexttowardl (long double, long double); /* 7.12.12.1 */ /* x > y ? (x - y) : 0.0 */ |