Define the types iaddr_t and saddr_t for sparc64.

This commit is contained in:
Robert Drehmel 2001-10-15 13:50:47 +00:00
parent f06c683e47
commit 8a56180f76
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84993

View File

@ -59,6 +59,10 @@ typedef int saddr_t; /* signed int same size as pointer */
typedef unsigned long iaddr_t; /* unsigned int same size as pointer */
typedef long saddr_t; /* signed int same size as pointer */
#endif
#ifdef __sparc64__
typedef unsigned long iaddr_t; /* unsigned long same size as pointer */
typedef long saddr_t; /* signed long same size as pointer */
#endif
#include "zalloc_mem.h"