summaryrefslogtreecommitdiffstats
path: root/sys/arch/sparc
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2013-07-04 05:19:40 +0000
committerguenther <guenther@openbsd.org>2013-07-04 05:19:40 +0000
commitae5e0d91de646d6bfc37c2556f2ab40d3fd3eda5 (patch)
treefa59ed00434ab277a31beb2484865146417a9b0f /sys/arch/sparc
parentAdd support for the GCC binary integer constants extension. (diff)
downloadwireguard-openbsd-ae5e0d91de646d6bfc37c2556f2ab40d3fd3eda5.tar.xz
wireguard-openbsd-ae5e0d91de646d6bfc37c2556f2ab40d3fd3eda5.zip
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/sparc')
-rw-r--r--sys/arch/sparc/include/_types.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sparc/include/_types.h b/sys/arch/sparc/include/_types.h
index fe82e73f8a3..6534611d307 100644
--- a/sys/arch/sparc/include/_types.h
+++ b/sys/arch/sparc/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.19 2012/11/05 19:39:34 miod Exp $ */
+/* $OpenBSD: _types.h,v 1.20 2013/07/04 05:19:43 guenther Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -118,16 +118,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