diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2005-05-31 20:01:18 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2005-05-31 20:01:18 +0000 |
| commit | 7ab17e6d01594f70d37544ae15b2977294985fcd (patch) | |
| tree | e4de41ee0f519009c05a5efd4a3ebc99b280ec01 | |
| parent | 63f173712839d2b917af5e66997472c2f482d463 (diff) | |
Notes
| -rw-r--r-- | lib/libstand/zalloc_defs.h | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/lib/libstand/zalloc_defs.h b/lib/libstand/zalloc_defs.h index 668f785f99cd..2544f59a6349 100644 --- a/lib/libstand/zalloc_defs.h +++ b/lib/libstand/zalloc_defs.h @@ -41,30 +41,8 @@ #include <string.h> #include "stand.h" -#ifdef __i386__ -typedef unsigned int iaddr_t; /* unsigned int same size as pointer */ -typedef int saddr_t; /* signed int same size as pointer */ -#endif -#ifdef __alpha__ -typedef unsigned long iaddr_t; /* unsigned long same size as pointer */ -typedef long saddr_t; /* signed long same size as pointer */ -#endif -#ifdef __powerpc__ -typedef unsigned int iaddr_t; /* unsigned int same size as pointer */ -typedef int saddr_t; /* signed int same size as pointer */ -#endif -#ifdef __ia64__ -typedef unsigned long iaddr_t; /* unsigned long same size as pointer */ -typedef long saddr_t; /* signed long 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 -#ifdef __arm__ -typedef unsigned long iaddr_t; /* unsigned int same size as pointer */ -typedef int saddr_t; /* signed int same size as pointer */ -#endif +typedef uintptr_t iaddr_t; /* unsigned int same size as pointer */ +typedef intptr_t saddr_t; /* signed int same size as pointer */ #include "zalloc_mem.h" #define Prototype extern |
