diff options
author | bde <bde@FreeBSD.org> | 1998-07-10 02:34:50 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-07-10 02:34:50 +0000 |
commit | 4c73b80db0d2882b6706a48673ec4de099f51641 (patch) | |
tree | f77a42474cbae388a6eab149f4b8cc93178672bc /sys | |
parent | 63dd5b520f4e0ad42df07e66779dc70b7b6f0037 (diff) | |
download | FreeBSD-src-4c73b80db0d2882b6706a48673ec4de099f51641.zip FreeBSD-src-4c73b80db0d2882b6706a48673ec4de099f51641.tar.gz |
Oops, forgot to modify the pointer-int typedefs from the i386 version.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/include/types.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/alpha/include/types.h b/sys/alpha/include/types.h index fd8f6b4..d9cb455 100644 --- a/sys/alpha/include/types.h +++ b/sys/alpha/include/types.h @@ -1,4 +1,4 @@ -/* $Id: types.h,v 1.5 1998/06/27 15:35:00 dfr Exp $ */ +/* $Id: types.h,v 1.6 1998/07/10 02:27:13 bde Exp $ */ /* From: NetBSD: types.h,v 1.8 1997/04/06 08:47:45 cgd Exp */ /*- @@ -76,10 +76,10 @@ typedef int32_t ufs_daddr_t; #ifdef KERNEL /* An unsigned integral type that can hold object pointers. */ -typedef u_int32_t ptrint_t; +typedef u_int64_t ptrint_t; /* An unsigned integral type that can hold function pointers. */ -typedef u_int32_t fptrint_t; +typedef u_int64_t fptrint_t; typedef u_int64_t uoff_t; /* unsigned file offset */ #endif |