foo
[dos_low3d] / src / types.h
1 #ifndef TYPES_H_
2 #define TYPES_H_
3
4 #if defined(__WATCOMC__) && __WATCOMC__ < 1200
5 typedef signed char int8_t;
6 typedef short int16_t;
7 typedef long int32_t;
8
9 typedef unsigned char uint8_t;
10 typedef unsigned short uint16_t;
11 typedef unsigned long uint32_t;
12
13 typedef long intptr_t;
14 typedef unsigned long uintptr_t;
15 #else
16 #include <stdint.h>
17 #endif
18
19 #endif  /* TYPES_H_ */