summaryrefslogtreecommitdiff
path: root/include/inttypes.h
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 /include/inttypes.h
parent442a311375e09fddb113ba6a49228530c53bb53f (diff)
move uint*_t to machine/types.h
Diffstat (limited to 'include/inttypes.h')
-rw-r--r--include/inttypes.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/include/inttypes.h b/include/inttypes.h
index db9f30d717b..68f7ad98d19 100644
--- a/include/inttypes.h
+++ b/include/inttypes.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: inttypes.h,v 1.2 1998/06/21 22:13:35 millert Exp $ */
+/* $OpenBSD: inttypes.h,v 1.3 1999/01/07 23:39:03 millert Exp $ */
/*
* Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -33,16 +33,6 @@
/* Machine type dependent parameters. */
#include <machine/types.h>
-/*
- * Fixed-size integer types as specified in XPG4.2.
- * int8_t, int16_t, int32_t, int64_t are defined in <machine/types.h>
- */
-
-typedef u_int8_t uint8_t;
-typedef u_int16_t uint16_t;
-typedef u_int32_t uint32_t;
-typedef u_int64_t uint64_t;
-
/* XXX - these really belong in <machine/types.h> (maybe create u_register_t) */
typedef long intptr_t;
typedef unsigned long uintptr_t;