summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-06 00:37:14 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-06 00:37:14 +0000
commit72607dee2d6539d30cfb063eedf9b08cea553bff (patch)
tree4b69009d6560c00f3717289815cee2ca4a82c7a7 /sys
parentf9c99804a7bd30bb1fbbaf28002236b73ad09245 (diff)
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;