mirror of
https://github.com/termux/termux-packages.git
synced 2025-09-22 13:19:36 +00:00
10 lines
300 B
C
10 lines
300 B
C
/* 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_REALLOC(arg1,arg2) realloc(arg1,arg2)
|
|
#define GC_MALLOC_ATOMIC(arg) malloc(arg)
|
|
|
|
#define GC_free(arg) free(arg)
|