GC_malloc -> GC_MALLOC

This makes it possible to build with -DGC_DEBUG.
This commit is contained in:
Eelco Dolstra
2018-06-12 17:49:55 +02:00
parent 455d1f01d0
commit c905d8b0a8
2 changed files with 3 additions and 9 deletions
+1 -1
View File
@@ -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