summaryrefslogtreecommitdiff
path: root/sys/arch/m68k
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/m68k')
-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