# | Line 4 | Line 4 | |
---|---|---|
4 | #define __STDINT_H__ | |
5 | ||
6 | #ifdef __bsdi__ | |
7 | + | #include <machine/types.h> |
8 | typedef u_int8_t uint8_t; | |
9 | < | typedef u_int16_t short uint16_t; |
9 | > | typedef u_int16_t uint16_t; |
10 | typedef u_int32_t uint32_t; | |
11 | typedef u_int64_t uint64_t; | |
12 | + | |
13 | + | #define INT32_MAX 0x7fffffff |
14 | + | #elif defined(__sun__) |
15 | + | #include <sys/int_types.h> |
16 | #else | |
17 | typedef unsigned char uint8_t; | |
18 | typedef unsigned short uint16_t; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |