added hcl_compile_flag_t

This commit is contained in:
2021-04-24 13:50:51 +00:00
parent e716c8bba9
commit 999024e54b
5 changed files with 32 additions and 16 deletions

View File

@ -83,9 +83,9 @@ static void fill_bigint_tables (hcl_t* hcl)
}
}
static void* alloc_heap (hcl_t* hcl, hcl_oow_t size)
static void* alloc_heap (hcl_t* hcl, hcl_oow_t* size)
{
return hcl_allocmem(hcl, size);
return hcl_allocmem(hcl, *size);
}
static void free_heap (hcl_t* hcl, void* ptr)