diff options
Diffstat (limited to 'types.h')
-rw-r--r-- | types.h | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,7 +1,9 @@ +typedef unsigned int uint; + typedef unsigned long long uint64_t; -typedef unsigned int uint32_t; -typedef unsigned short uint16_t; -typedef unsigned char uint8_t; -typedef uint32_t uintptr_t; -typedef uint32_t physaddr_t; -typedef unsigned int uint; +typedef unsigned int uint32_t; +typedef unsigned short uint16_t; +typedef unsigned char uint8_t; + +typedef uint32_t uintptr_t; +typedef uint32_t physaddr_t; |