work on number parsing

This commit is contained in:
William Bell
2025-08-11 19:26:19 +01:00
parent d2e742f992
commit f851b37f99
7 changed files with 208 additions and 25 deletions

View File

@@ -33,7 +33,6 @@ void gmp_gc_free(void *ptr, size_t size) {
void ar_memory_init() {
GC_INIT();
mp_set_memory_functions(GC_malloc, gmp_gc_realloc, gmp_gc_free);
}
void *ar_alloc(size_t size) { return GC_MALLOC(size); }