sync with w3m-0.2.2-inu-1.1/gc
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#define GC_DEBUG
|
||||
#include "gc.h"
|
||||
#define malloc(n) GC_MALLOC(n)
|
||||
#define calloc(m,n) GC_MALLOC(m*n)
|
||||
#define calloc(m,n) GC_MALLOC((m)*(n))
|
||||
#define free(p) GC_FREE(p)
|
||||
#define realloc(p,n) GC_REALLOC(n)
|
||||
#define realloc(p,n) GC_REALLOC((p),(n))
|
||||
#define CHECK_LEAKS() GC_gcollect()
|
||||
|
Reference in New Issue
Block a user