1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
10 lines
184 B
C
10 lines
184 B
C
#include <stdint.h>
|
|
|
|
#define INT_MIN INT32_MIN
|
|
#define INT_MAX INT32_MAX
|
|
#define LONG_MIN INT32_MIN
|
|
#define LONG_MAX INT32_MAX
|
|
#define LLONG_MIN INT64_MIN
|
|
#define LLONG_MAX INT64_MAX
|
|
|