jvm/c/gc.h

8 lines
107 B
C

#pragma once
#include "vm.h"
void gc_mark(struct vm * vm);
void gc_sweep();
void gc_run(struct vm * vm);