]> git.sur5r.net Git - cc65/commitdiff
Declaration of LONG_MIN was wrong
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 15 Dec 2002 12:12:33 +0000 (12:12 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 15 Dec 2002 12:12:33 +0000 (12:12 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1771 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/limits.h

index 574a94933987ccb0b9884bdb14fb03750a500d23..d02d52dca223bbfe1ae57e306463c8ad6595a10b 100644 (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