summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormatthew <matthew@openbsd.org>2011-07-06 00:37:13 +0000
committermatthew <matthew@openbsd.org>2011-07-06 00:37:13 +0000
commita6dea3343fd9bc5ec3d11f14ef2977b02f26db4f (patch)
treee88551db98537bfee5733632bb87fb49a6788b47 /sys
parentadd a couple of fields needed for buffer flipping, and change systat to (diff)
downloadwireguard-openbsd-a6dea3343fd9bc5ec3d11f14ef2977b02f26db4f.tar.xz
wireguard-openbsd-a6dea3343fd9bc5ec3d11f14ef2977b02f26db4f.zip
Make alpha consistent with our other architectures by using "long
long" for __off_t. This is a C++ ABI bump, but martynas@ already bumped libstdc++. Discussed and requested by many on icb.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/alpha/include/_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/_types.h b/sys/arch/alpha/include/_types.h
index 47a9f374a9a..9d3d0d02814 100644
--- a/sys/arch/alpha/include/_types.h
+++ b/sys/arch/alpha/include/_types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: _types.h,v 1.12 2011/03/23 16:54:33 pirofti Exp $ */
+/* $OpenBSD: _types.h,v 1.13 2011/07/06 00:37:13 matthew Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -95,7 +95,7 @@ typedef int __clock_t;
typedef int __clockid_t;
typedef double __double_t;
typedef float __float_t;
-typedef long __off_t;
+typedef long long __off_t;
typedef long __ptrdiff_t;
typedef unsigned long __size_t;
typedef long __ssize_t;