mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-15 09:21:33 +00:00
df890432b7
long is ignored for double, and v6p progs are stuck with 32 bits for longs (don't feel like extending v6p any further), but the basics are there for Ruamoko. short is ignored for ints because the minimum size is 32, and signed is just noise for ints anyway (and no chars, so...). unsigned, however, is finally implemented properly (or at least seems to be working correctly: tests pass after getting things compiling again, and lt.u is used where it should be :)
10 lines
208 B
C
10 lines
208 B
C
typedef int uint8_t;
|
|
typedef int uint16_t;
|
|
typedef int uint32_t;
|
|
typedef int uint64_t;
|
|
typedef int int8_t;
|
|
typedef int int16_t;
|
|
typedef int int32_t;
|
|
typedef int int64_t;
|
|
typedef int size_t;
|
|
typedef int char;
|