From 1c961bc819b6ac28eed404c0f403c6857d4260bd Mon Sep 17 00:00:00 2001 From: millert <> Date: Thu, 7 Jan 1999 23:39:03 +0000 Subject: [PATCH] move uint*_t to machine/types.h --- src/include/inttypes.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/include/inttypes.h b/src/include/inttypes.h index db9f30d7..68f7ad98 100644 --- a/src/include/inttypes.h +++ b/src/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 @@ -33,16 +33,6 @@ /* Machine type dependent parameters. */ #include -/* - * Fixed-size integer types as specified in XPG4.2. - * int8_t, int16_t, int32_t, int64_t are defined in - */ - -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 (maybe create u_register_t) */ typedef long intptr_t; typedef unsigned long uintptr_t;