aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha/include
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-07-10 02:27:16 +0000
committerBruce Evans <bde@FreeBSD.org>1998-07-10 02:27:16 +0000
commit2e480d34aaabcd405e72ff80866451e8c3b08c08 (patch)
tree42debb467f1f9ffcad43a252efb81d84fb61db3d /sys/alpha/include
parentf763857cffe9dbe1a3486de1191ed10acf2f1138 (diff)
Notes
Diffstat (limited to 'sys/alpha/include')
-rw-r--r--sys/alpha/include/types.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/alpha/include/types.h b/sys/alpha/include/types.h
index 87926d40e0ef..fd8f6b45e63f 100644
--- a/sys/alpha/include/types.h
+++ b/sys/alpha/include/types.h
@@ -1,4 +1,4 @@
-/* $Id: types.h,v 1.4 1998/06/14 15:26:03 bde Exp $ */
+/* $Id: types.h,v 1.5 1998/06/27 15:35:00 dfr Exp $ */
/* From: NetBSD: types.h,v 1.8 1997/04/06 08:47:45 cgd Exp */
/*-
@@ -75,6 +75,12 @@ typedef int64_t register_t;
typedef int32_t ufs_daddr_t;
#ifdef KERNEL
+/* An unsigned integral type that can hold object pointers. */
+typedef u_int32_t ptrint_t;
+
+/* An unsigned integral type that can hold function pointers. */
+typedef u_int32_t fptrint_t;
+
typedef u_int64_t uoff_t; /* unsigned file offset */
#endif