mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 17:19:18 +08:00
79f777fd1e
From-SVN: r49698
8 lines
207 B
C
8 lines
207 B
C
#define GC_DEBUG
|
|
#include "gc.h"
|
|
#define malloc(n) GC_MALLOC(n)
|
|
#define calloc(m,n) GC_MALLOC((m)*(n))
|
|
#define free(p) GC_FREE(p)
|
|
#define realloc(p,n) GC_REALLOC((p),(n))
|
|
#define CHECK_LEAKS() GC_gcollect()
|