xv6-cs450/types.h
2006-06-12 15:22:12 +00:00

7 lines
189 B
C

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;