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/hppa/include/types.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sys/arch/hppa') diff --git a/sys/arch/hppa/include/types.h b/sys/arch/hppa/include/types.h index 47c6501317d..c6feed5f41c 100644 --- a/sys/arch/hppa/include/types.h +++ b/sys/arch/hppa/include/types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: types.h,v 1.2 1998/11/23 03:28:23 mickey Exp $ */ +/* $OpenBSD: types.h,v 1.3 1999/01/07 23:39:00 millert Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -70,16 +70,21 @@ typedef __signed char int8_t; typedef char int8_t; #endif 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; #ifdef __STDC__ typedef long long int64_t; typedef unsigned long long u_int64_t; +typedef unsigned long long uint64_t; #else typedef long int64_t; typedef unsigned long u_int64_t; +typedef unsigned long uint64_t; #endif typedef int32_t register_t; -- cgit v1.2.3