0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-10-05 13:39:41 +00:00
Files
termux-packages/packages/w3m/gc.h
2022-12-20 19:28:23 +00:00

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)