17 lines
253 B
C
17 lines
253 B
C
#ifndef _GC_H_
|
|
#define _GC_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "common.h"
|
|
|
|
void gc_init();
|
|
cons_t *alloc();
|
|
void gc_run();
|
|
void gc_loop();
|
|
void relocate(cons_t*);
|
|
|
|
#endif // _GC_H_
|