diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-09-11 03:13:15 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-09-11 03:13:15 +0000 |
commit | f149973361f96e730c34e97705b7f155f1832092 (patch) | |
tree | 19af8080b4df46df14f033d85fc97d08821f0998 /usr.sbin/dhcp | |
parent | 31ac860be30d1f116b566aa2bace1768078860b0 (diff) |
sparc64 has 64 bit pointers, too
Diffstat (limited to 'usr.sbin/dhcp')
-rw-r--r-- | usr.sbin/dhcp/includes/cf/openbsd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/dhcp/includes/cf/openbsd.h b/usr.sbin/dhcp/includes/cf/openbsd.h index 1c9b3690a3b..3ce9db4e0fb 100644 --- a/usr.sbin/dhcp/includes/cf/openbsd.h +++ b/usr.sbin/dhcp/includes/cf/openbsd.h @@ -91,6 +91,6 @@ extern int h_errno; # define USE_BPF #endif -#ifdef __alpha__ +#if defined(__alpha__) || (defined(__sparc64__) && defined(__arch64__)) #define PTRSIZE_64BIT #endif |