1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

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:
cuz 2002-12-15 12:12:33 +00:00
parent 199c9fcd4a
commit c0ec39ae7a

View File

@ -41,7 +41,7 @@
#define CHAR_BIT 8
#define SCHAR_MIN ((signed char) 0x80)
#define SCHAR_MAX 127
#define SCHAR_MAX 127
#define UCHAR_MAX 255
@ -59,7 +59,7 @@
#define UINT_MAX 65535U
#define LONG_MAX 2147483647L
#define LONG_MIN ((long) 0x8000000)
#define LONG_MIN ((long) 0x80000000)
#define ULONG_MAX 4294967295UL