* include/math.h (DOMAIN, SING, OVERFLOW, UNDERFLOW,

TLOSS, PLOSS): Move oldname defines back, following
	the underscored names.
This commit is contained in:
Danny Smith 2002-04-04 08:54:50 +00:00
parent 932e88a3bc
commit 244a8fae42
2 changed files with 19 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2002-04-04 Danny Smith <dannysmith@sourceforge.users.net>
* include/math.h (DOMAIN, SING, OVERFLOW, UNDERFLOW,
TLOSS, PLOSS): Move oldname defines back, following
the underscored names.
2002-03-29 Danny Smith <dannysmith@sourceforge.users.net>
* include/stdio.h (_snwprintf): Correct spelling.

View File

@ -46,9 +46,22 @@
*/
#ifndef __STRICT_ANSI__
#ifndef _NO_OLDNAMES
#define DOMAIN _DOMAIN
#define SING _SING
#define OVERFLOW _OVERFLOW
#define UNDERFLOW _UNDERFLOW
#define TLOSS _TLOSS
#define PLOSS _PLOSS
#endif /* Not _NO_OLDNAMES */
#endif /* Not __STRICT_ANSI__ */
/* These are also defined in Mingw float.h; needed here as well to work
around GCC build issues. */
#ifndef __STRICT_ANSI__
#ifndef __MINGW_FPCLASS_DEFINED
#define __MINGW_FPCLASS_DEFINED 1
#define _FPCLASS_SNAN 0x0001 /* Signaling "Not a Number" */
@ -62,20 +75,8 @@
#define _FPCLASS_PN 0x0100 /* Positive Normal */
#define _FPCLASS_PINF 0x0200 /* Positive Infinity */
#endif /* __MINGW_FPCLASS_DEFINED */
#ifndef _NO_OLDNAMES
#define DOMAIN _DOMAIN
#define SING _SING
#define OVERFLOW _OVERFLOW
#define UNDERFLOW _UNDERFLOW
#define TLOSS _TLOSS
#define PLOSS _PLOSS
#endif /* Not _NO_OLDNAMES */
#endif /* Not __STRICT_ANSI__ */
#ifndef RC_INVOKED
#ifdef __cplusplus