Rev 1765 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1765 | Rev 1779 | ||
|---|---|---|---|
| Line 29... | Line 29... | ||
| 29 | #ifndef TYPES_H__ |
29 | #ifndef TYPES_H__ |
| 30 | #define TYPES_H__ |
30 | #define TYPES_H__ |
| 31 | 31 | ||
| 32 | #include <gentypes.h> |
32 | #include <gentypes.h> |
| 33 | 33 | ||
| 34 | typedef signed char __s8; |
34 | typedef signed char int8_t; |
| 35 | 35 | ||
| 36 | typedef unsigned char __u8; |
36 | typedef unsigned char uint8_t; |
| 37 | typedef unsigned short __u16; |
37 | typedef unsigned short uint16_t; |
| 38 | typedef unsigned int __u32; |
38 | typedef unsigned int uint32_t; |
| 39 | typedef unsigned long __u64; |
39 | typedef unsigned long uint64_t; |
| 40 | 40 | ||
| 41 | typedef __u64 __address; |
41 | typedef uint64_t uintptr_t; |
| 42 | typedef __u64 __native; |
42 | typedef uint64_t unative_t; |
| 43 | 43 | ||
| 44 | #endif |
44 | #endif |