Project restructuring to support the new direction
This commit is contained in:
16
example/c/gc.h
Normal file
16
example/c/gc.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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_
|
||||
Reference in New Issue
Block a user