summaryrefslogtreecommitdiff
path: root/sys/arch/wgrisc
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-07 23:39:04 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-07 23:39:04 +0000
commit78e4e6f266a06179e8bb5af042d81cb629601dc4 (patch)
tree02dc229dd8b5b45fb8c74d65b0015410d53b3489 /sys/arch/wgrisc
parent442a311375e09fddb113ba6a49228530c53bb53f (diff)
move uint*_t to machine/types.h
Diffstat (limited to 'sys/arch/wgrisc')
-rw-r--r--sys/arch/wgrisc/include/types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/wgrisc/include/types.h b/sys/arch/wgrisc/include/types.h
index af2da55a4d1..83ec02c19d0 100644
--- a/sys/arch/wgrisc/include/types.h
+++ b/sys/arch/wgrisc/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.1 1997/02/06 16:02:43 pefo Exp $ */
+/* $OpenBSD: types.h,v 1.2 1999/01/07 23:39:03 millert Exp $ */
/* $NetBSD: types.h,v 1.10 1995/07/06 03:39:43 cgd Exp $ */
/*-
@@ -64,14 +64,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;