diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-13 17:50:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-13 17:50:07 +0000 |
commit | 03c6e34031dca0e5942b1c2a8afadd4b0326194e (patch) | |
tree | db8548659578162a57ac5668e79632982a96707f /sys/arch/m68k | |
parent | 05c637a0182e16f7dd5321988ac0642b43902c4d (diff) |
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.
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r-- | sys/arch/m68k/include/_types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/m68k/include/_types.h b/sys/arch/m68k/include/_types.h index 61a27d07600..8c31455080b 100644 --- a/sys/arch/m68k/include/_types.h +++ b/sys/arch/m68k/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.1 2006/01/06 18:50:09 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 |