diff options
Diffstat (limited to 'py/gc.h')
-rw-r--r-- | py/gc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ void gc_collect_root(void **ptrs, machine_uint_t len); void gc_collect_end(void); void gc_collect(void); void *gc_alloc(machine_uint_t n_bytes); +void *gc_alloc_mp_obj(machine_uint_t n_bytes); void gc_free(void *ptr); machine_uint_t gc_nbytes(void *ptr); void *gc_realloc(void *ptr, machine_uint_t n_bytes); |