You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
251 B
8 lines
251 B
/* A stub for gc.h to avoid depending on libgc for
|
|
the host-built mktable program. */
|
|
#define GC_INIT()
|
|
#define GC_MALLOC(arg) malloc(arg)
|
|
#define GC_malloc(arg) malloc(arg)
|
|
#define GC_MALLOC_ATOMIC(arg) malloc(arg)
|
|
|
|
#define GC_free(arg) free(arg)
|
|
|