diff options
author | Greg Hudson <ghudson@mit.edu> | 1994-10-31 09:52:09 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 1994-10-31 09:52:09 +0000 |
commit | 8c6b9709d8624ce6416cd6fceb9be73c38729164 (patch) | |
tree | 5103d19fa66a8c5bf6eb56b18a2349566f86eed6 /server | |
parent | e3e38baad98fff95073f2063b7502bcd412bbfdc (diff) |
Allow for realloc().
Diffstat (limited to 'server')
-rw-r--r-- | server/unix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/unix.h b/server/unix.h index 858ee71..692697e 100644 --- a/server/unix.h +++ b/server/unix.h @@ -101,6 +101,7 @@ extern void acl_cache_reset P((void)); #define xinsque(a,b) insque((struct qelem *)(a), (struct qelem *)(b)) #define xremque(a) remque((struct qelem *)(a)) #define xmalloc(a) malloc((unsigned)(a)) +#define xrealloc(foo,a) realloc((caddr_t) (foo), (unsigned) (a)) #define ZSERVER_UNIX_H__ #endif |