diff options
author | 2013-07-05 19:46:27 +0000 | |
---|---|---|
committer | 2013-07-05 19:46:27 +0000 | |
commit | dce3329033f1378988f425d68fc0c33749c667f1 (patch) | |
tree | 61e0d19703a5613400918efc9ef7a3866e992d94 /sys/arch/sparc | |
parent | bring back pflow v10; broken in previous commit, sorry. (diff) | |
download | wireguard-openbsd-dce3329033f1378988f425d68fc0c33749c667f1.tar.xz wireguard-openbsd-dce3329033f1378988f425d68fc0c33749c667f1.zip |
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/sparc')
-rw-r--r-- | sys/arch/sparc/include/_types.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sparc/include/_types.h b/sys/arch/sparc/include/_types.h index ef66a80ef71..68084ea3c4f 100644 --- a/sys/arch/sparc/include/_types.h +++ b/sys/arch/sparc/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.21 2013/07/04 13:57:42 otto Exp $ */ +/* $OpenBSD: _types.h,v 1.22 2013/07/05 19:46:27 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 |