From 78e4e6f266a06179e8bb5af042d81cb629601dc4 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 7 Jan 1999 23:39:04 +0000 Subject: move uint*_t to machine/types.h --- sys/arch/i386/include/types.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/arch/i386/include') diff --git a/sys/arch/i386/include/types.h b/sys/arch/i386/include/types.h index e333a63b4d4..404e73970d5 100644 --- a/sys/arch/i386/include/types.h +++ b/sys/arch/i386/include/types.h @@ -60,14 +60,19 @@ 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; /* LONGLONG */ typedef long long int64_t; /* LONGLONG */ typedef unsigned long long u_int64_t; +/* LONGLONG */ +typedef unsigned long long uint64_t; typedef int32_t register_t; -- cgit v1.2.3