diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2013-07-05 19:46:28 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2013-07-05 19:46:28 +0000 |
commit | c7db72065086f0d31f99f199a9c3807aafe684ab (patch) | |
tree | fe62c47396089b7c9875ca3b66ba303eb588716c /sys/arch/hppa64 | |
parent | 07a2d9afcc5ccefb5c7ecbb4c21a721eb248d91f (diff) |
Take II, this time without flubbing off_t: : move several internal
type definitions that are the same across all archs from
<machine/_types.h> to <sys/_types.h>
ok deraadt@ kettenis@ otto@
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/include/_types.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/hppa64/include/_types.h b/sys/arch/hppa64/include/_types.h index 69ad6d7337e..80b5c3ff159 100644 --- a/sys/arch/hppa64/include/_types.h +++ b/sys/arch/hppa64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.13 2013/07/04 13:57:40 otto Exp $ */ +/* $OpenBSD: _types.h,v 1.14 2013/07/05 19:46:27 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -121,16 +121,11 @@ typedef unsigned long __vsize_t; typedef unsigned long __psize_t; /* Standard system types */ -typedef int __clock_t; -typedef int __clockid_t; typedef double __double_t; typedef float __float_t; -typedef long long __off_t; typedef long __ptrdiff_t; typedef unsigned long __size_t; typedef long __ssize_t; -typedef int __time_t; -typedef int __timer_t; typedef __builtin_va_list __va_list; /* Wide character support types */ |