fix bad call to realloc (nf patches).

This commit is contained in:
Vitor Santos Costa 2009-11-27 18:46:11 +00:00
parent 506da0b1bf
commit 8213d52af4
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static char SccsId[] = "%W% %G%";
#if USE_SYSTEM_MALLOC
#define my_malloc(sz) malloc(sz)
#define my_realloc(ptr, sz, osz, safe) realloc(ptr, sz)
#define my_realloc0(ptr, sz) realloc0(ptr, sz)
#define my_realloc0(ptr, sz) realloc(ptr, sz)
#define my_free(ptr) free(ptr)
#else
#define my_malloc(sz) Yap_dlmalloc(sz)