termux-packages/packages/w3m/gc.h
2016-05-12 17:21:23 -04:00

9 lines
251 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_MALLOC_ATOMIC(arg) malloc(arg)
#define GC_free(arg) free(arg)