diff options
author | rtm <rtm> | 2006-07-20 09:07:53 +0000 |
---|---|---|
committer | rtm <rtm> | 2006-07-20 09:07:53 +0000 |
commit | 29270816285978e44b317c6e5c7bfa7a89ec24dd (patch) | |
tree | fae6e6346ca73f7d2721c059a9f1fce166c045c7 /types.h | |
parent | bd228a81566befa6154807d327d8c873f6a76c79 (diff) | |
download | xv6-labs-29270816285978e44b317c6e5c7bfa7a89ec24dd.tar.gz xv6-labs-29270816285978e44b317c6e5c7bfa7a89ec24dd.tar.bz2 xv6-labs-29270816285978e44b317c6e5c7bfa7a89ec24dd.zip |
uint32_t -> uint &c
Diffstat (limited to 'types.h')
-rw-r--r-- | types.h | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -1,9 +1,3 @@ -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 short ushort; +typedef unsigned char uchar; |