GC_malloc -> GC_MALLOC
This makes it possible to build with -DGC_DEBUG.
This commit is contained in:
@@ -83,7 +83,7 @@ inline void * allocBytes(size_t n)
|
||||
{
|
||||
void * p;
|
||||
#if HAVE_BOEHMGC
|
||||
p = GC_malloc(n);
|
||||
p = GC_MALLOC(n);
|
||||
#else
|
||||
p = calloc(n, 1);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user