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:
parent
199c9fcd4a
commit
c0ec39ae7a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue