Correcting an arithmetic error present in nc_test under gcc on Windows.

This commit is contained in:
Ward Fisher 2012-08-22 19:19:04 +00:00
parent 24a1cd0718
commit 5ebda8c08f

View File

@ -29,7 +29,7 @@
#define X_BYTE_MAX 127
#define X_SHORT_MIN (-32768)
#define X_SHORT_MAX 32767
#define X_INT_MIN (-2147483648)
#define X_INT_MIN (-2147483647-1)
#define X_INT_MAX 2147483647
#if defined(FLT_MAX_EXP) && FLT_MAX_EXP < 128
/* FLT_MAX < X_FLOAT_MAX */