From 03c6e34031dca0e5942b1c2a8afadd4b0326194e Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 13 Jan 2006 17:50:07 +0000 Subject: Make size_t, ssize_t, intptr_t and uintptr_t consistent amongst our architectures. They are now defined as unsigned long, long, long and unsigned long respectively. --- sys/arch/i386/include/_types.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/arch/i386') diff --git a/sys/arch/i386/include/_types.h b/sys/arch/i386/include/_types.h index ccad5063d2d..8d54ca43d8c 100644 --- a/sys/arch/i386/include/_types.h +++ b/sys/arch/i386/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.1 2006/01/06 18:50:08 millert Exp $ */ +/* $OpenBSD: _types.h,v 1.2 2006/01/13 17:50:06 millert Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -94,9 +94,9 @@ typedef unsigned long __psize_t; typedef int __clock_t; typedef int __clockid_t; typedef long long __off_t; -typedef int __ptrdiff_t; -typedef unsigned int __size_t; -typedef int __ssize_t; +typedef long __ptrdiff_t; +typedef unsigned long __size_t; +typedef long __ssize_t; typedef int __time_t; typedef int __timer_t; #if defined(__GNUC__) && __GNUC__ >= 3 -- cgit v1.2.3