diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-25 10:50:12 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-01-25 10:50:12 +0200 |
commit | da1d22c183f5d8241538524665e572c5c6a15865 (patch) | |
tree | 6c76d7940657e794f7f02bfb49b3d22bfcff330d /dfa.c | |
parent | 5cca2a2d008689dfc415415f71bae1b7b7923bd6 (diff) | |
download | egawk-da1d22c183f5d8241538524665e572c5c6a15865.tar.gz egawk-da1d22c183f5d8241538524665e572c5c6a15865.tar.bz2 egawk-da1d22c183f5d8241538524665e572c5c6a15865.zip |
Considerable additional portability fixes.
Diffstat (limited to 'dfa.c')
-rw-r--r-- | dfa.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -480,6 +480,7 @@ static void regexp (void); (sizeof (t) == 1 ? xzalloc (n) : xcalloc (n, sizeof (t))) #define CALLOC(p, n) do { (p) = XCALLOC (n, *(p)); } while (0) +#undef MALLOC /* Irix defines this */ #define MALLOC(p, n) do { (p) = XNMALLOC (n, *(p)); } while (0) #define REALLOC(p, n) do {(p) = xnrealloc (p, n, sizeof (*(p))); } while (0) |