libm: Watcom defines huge=__huge: undefine it to fix build using Watcom.

This commit is contained in:
Ozkan Sezer
2018-11-18 11:50:20 +03:00
parent ed8413c937
commit 1a02403ea7
5 changed files with 20 additions and 0 deletions

View File

@@ -75,6 +75,10 @@
#include "math_libm.h"
#include "math_private.h"
#ifdef __WATCOMC__ /* Watcom defines huge=__huge */
#undef huge
#endif
static const double
one = 1.0,
halF[2] = {0.5,-0.5,},