summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/include/math.h
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2005-05-09 09:36:10 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2005-05-09 09:36:10 +0000
commit5b91f0a6efc120a2c7b26000347f4a2876577fa8 (patch)
tree6f2aee72019acd5b7ff3bef4f79009b806de0535 /winsup/mingw/include/math.h
parentb6487cdedbc55dfff3c4e859b3c34ff73e173a22 (diff)
downloadcygnal-5b91f0a6efc120a2c7b26000347f4a2876577fa8.tar.gz
cygnal-5b91f0a6efc120a2c7b26000347f4a2876577fa8.tar.bz2
cygnal-5b91f0a6efc120a2c7b26000347f4a2876577fa8.zip
* mingwex/math/nextafterf.c (nextafterf): Correct
handling of -0.0. * mingwex/math/nextafterl.c: New file. * mingwex/Makefile.in (MATH_DISTFILES): Add nextafterl.c. (MATH_OBJS): Add nextafterl.o. * include/math.h (nextafterl): Uncomment prototype.
Diffstat (limited to 'winsup/mingw/include/math.h')
-rw-r--r--winsup/mingw/include/math.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h
index 751fa9509..9f1531dd7 100644
--- a/winsup/mingw/include/math.h
+++ b/winsup/mingw/include/math.h
@@ -721,8 +721,7 @@ extern long double __cdecl nanl(const char *tagp);
/* 7.12.11.3 */
extern double __cdecl nextafter (double, double); /* in libmoldname.a */
extern float __cdecl nextafterf (float, float);
-/* TODO: Not yet implemented */
-/* extern long double __cdecl nextafterl (long double, long double); */
+extern long double __cdecl nextafterl (long double, long double);
/* 7.12.11.4 The nexttoward functions: TODO */