mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-10-31 11:04:55 +00:00
14 lines
313 B
C
14 lines
313 B
C
|
#define INT_MAX 32767
|
||
|
#define INT_MIN -32768
|
||
|
#define UINT_MAX 65535
|
||
|
#define LONG_MAX INT_MAX
|
||
|
#define LONG_MIN INT_MIN
|
||
|
#define SCHAR_MAX 127
|
||
|
#define SCHAR_MIN -128
|
||
|
#define UCHAR_MAX 255
|
||
|
#define SHRT_MAX 32767
|
||
|
#define SHRT_MIN -32768
|
||
|
#define USHRT_MAX 65535
|
||
|
#define ULONG_MAX UINT_MAX
|
||
|
#define CHAR_BIT __CHAR_BIT__
|