10 lines
151 B
C
10 lines
151 B
C
|
|
#ifndef RAVA_GC_SWEEP_H
|
||
|
|
#define RAVA_GC_SWEEP_H
|
||
|
|
|
||
|
|
#include "gc.h"
|
||
|
|
|
||
|
|
void rava_gc_sweep(void);
|
||
|
|
void rava_gc_finalize_object(RavaGCHeader_t *obj);
|
||
|
|
|
||
|
|
#endif
|