14 lines
175 B
V
14 lines
175 B
V
|
module builtin
|
||
|
|
||
|
#define GC_THREADS 1
|
||
|
|
||
|
#include <gc.h>
|
||
|
|
||
|
#flag -lgc
|
||
|
|
||
|
fn C.GC_MALLOC(n size_t) voidptr
|
||
|
|
||
|
fn C.GC_REALLOC(ptr voidptr, n size_t) voidptr
|
||
|
|
||
|
fn C.GC_FREE(ptr voidptr)
|