summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/include
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2013-07-04 05:19:45 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2013-07-04 05:19:45 +0000
commitd14861b075a91d6688f7070a6dc88208530b37b2 (patch)
treec8df65e1a778c7f2e2a1a619c6c179da35708506 /sys/arch/sparc64/include
parent11bc421ce0aa7c6754ffd7c7586196dde69c15c1 (diff)
To ease future changes, move several internal type definitions that are
the same across all archs from <machine/_types.h> to <sys/_types.h> ok deraadt@
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r--sys/arch/sparc64/include/_types.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sparc64/include/_types.h b/sys/arch/sparc64/include/_types.h
index c9a51819050..9203c2ca47c 100644
--- a/sys/arch/sparc64/include/_types.h
+++ b/sys/arch/sparc64/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.15 2012/11/05 19:39:34 miod Exp $ */
+/* $OpenBSD: _types.h,v 1.16 2013/07/04 05:19:43 guenther Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -117,16 +117,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;
#if defined(__GNUC__) && __GNUC__ >= 3
typedef __builtin_va_list __va_list;
#else