math.h: fix guards on basic M_ constants

MAXFLOAT, M_PI, and friends date back to at least XPG4v2, so this guard
was incorrect even prior to the feature test macros overhaul.

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz 2016-07-15 09:06:53 -05:00
parent 7475b656f4
commit 52d940e263

View File

@ -628,7 +628,7 @@ extern int matherr _PARAMS((struct exception *e));
/* Useful constants. */ /* Useful constants. */
#if __BSD_VISIBLE || __XSI_VISIBLE >= 500 #if __BSD_VISIBLE || __XSI_VISIBLE
#define MAXFLOAT 3.40282347e+38F #define MAXFLOAT 3.40282347e+38F