Define iaddr_t and saddr_t for arm.

This commit is contained in:
Olivier Houchard 2004-05-14 13:32:13 +00:00
parent c1b2de5af0
commit 027e3e1b0d
1 changed files with 4 additions and 1 deletions

View File

@ -61,7 +61,10 @@ typedef long saddr_t; /* signed long same size as pointer */
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
#include "zalloc_mem.h"
#define Prototype extern