diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-07 23:39:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-07 23:39:04 +0000 |
commit | 78e4e6f266a06179e8bb5af042d81cb629601dc4 (patch) | |
tree | 02dc229dd8b5b45fb8c74d65b0015410d53b3489 /sys/arch/mvme88k | |
parent | 442a311375e09fddb113ba6a49228530c53bb53f (diff) |
move uint*_t to machine/types.h
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/include/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/arch/mvme88k/include/types.h b/sys/arch/mvme88k/include/types.h index f8d63e931d3..52892432f3f 100644 --- a/sys/arch/mvme88k/include/types.h +++ b/sys/arch/mvme88k/include/types.h @@ -69,12 +69,16 @@ typedef unsigned long vm_size_t; #define __BIT_TYPES_DEFINED__ typedef __signed char int8_t; typedef unsigned char u_int8_t; +typedef unsigned char uint8_t; typedef short int16_t; typedef unsigned short u_int16_t; +typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned int u_int32_t; +typedef unsigned int uint32_t; typedef long long int64_t; typedef unsigned long long u_int64_t; +typedef unsigned long long uint64_t; typedef int32_t register_t; |