xref: /xv6-public/types.h (revision b5ee5165)
1 typedef unsigned int       uint;
2 
3 typedef unsigned long long uint64_t;
4 typedef unsigned int       uint32_t;
5 typedef unsigned short     uint16_t;
6 typedef unsigned char      uint8_t;
7 
8 typedef uint32_t           uintptr_t;
9 typedef uint32_t           physaddr_t;
10