From b5ee516575b4d2f1fd7de014230fee7cf8b6b538 Mon Sep 17 00:00:00 2001 From: rsc Date: Mon, 17 Jul 2006 01:52:13 +0000 Subject: add uint and standardize on typedefs instead of unsigned --- types.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'types.h') diff --git a/types.h b/types.h index f520c97..938154b 100644 --- a/types.h +++ b/types.h @@ -1,7 +1,9 @@ +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 int uint32_t; +typedef unsigned short uint16_t; +typedef unsigned char uint8_t; + +typedef uint32_t uintptr_t; +typedef uint32_t physaddr_t; -- cgit v1.2.3