Corrected path for gc include file.
This commit is contained in:
parent
a718fb27f5
commit
8669c613b2
|
|
@ -9,7 +9,7 @@ extern void txfree(void *ptr);
|
||||||
#define tfree(x) (txfree(x), x = 0)
|
#define tfree(x) (txfree(x), x = 0)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#include <gc.h>
|
#include <gc/gc.h>
|
||||||
|
|
||||||
#define tmalloc(m) GC_malloc(m)
|
#define tmalloc(m) GC_malloc(m)
|
||||||
#define trealloc(m,n) GC_realloc((m),(n))
|
#define trealloc(m,n) GC_realloc((m),(n))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue