summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2013-07-04 13:57:44 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2013-07-04 13:57:44 +0000
commita37aadf8abe7a4e8dc2a138cd328f35971542270 (patch)
tree9cbeb57f7c71d18bb4f5395230f4d2610c36dccc /sys/arch/m68k/include
parentd95e64f04961891906b3086676c6cfaeb5318b40 (diff)
backout previous; off_t must be signed and there might be other C++ API
breakage lurking; ok kettenis@
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r--sys/arch/m68k/include/_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/_types.h b/sys/arch/m68k/include/_types.h
index e51f5e3ed9a..d89e0eaee42 100644
--- a/sys/arch/m68k/include/_types.h
+++ b/sys/arch/m68k/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.13 2013/07/04 05:19:42 guenther Exp $ */
+/* $OpenBSD: _types.h,v 1.14 2013/07/04 13:57:41 otto Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -117,11 +117,16 @@ typedef unsigned long __vsize_t;
typedef unsigned long __psize_t;
/* Standard system types */
+typedef int __clock_t;
+typedef int __clockid_t;
typedef long double __double_t;
typedef long double __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