Declaration of LONG_MIN was wrong
git-svn-id: svn://svn.cc65.org/cc65/trunk@1771 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -41,7 +41,7 @@
|
|||||||
#define CHAR_BIT 8
|
#define CHAR_BIT 8
|
||||||
|
|
||||||
#define SCHAR_MIN ((signed char) 0x80)
|
#define SCHAR_MIN ((signed char) 0x80)
|
||||||
#define SCHAR_MAX 127
|
#define SCHAR_MAX 127
|
||||||
|
|
||||||
#define UCHAR_MAX 255
|
#define UCHAR_MAX 255
|
||||||
|
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
#define UINT_MAX 65535U
|
#define UINT_MAX 65535U
|
||||||
|
|
||||||
#define LONG_MAX 2147483647L
|
#define LONG_MAX 2147483647L
|
||||||
#define LONG_MIN ((long) 0x8000000)
|
#define LONG_MIN ((long) 0x80000000)
|
||||||
|
|
||||||
#define ULONG_MAX 4294967295UL
|
#define ULONG_MAX 4294967295UL
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user