aboutsummaryrefslogtreecommitdiff
path: root/py/gc.h
diff options
context:
space:
mode:
authormux <freelancer.c@gmail.com>2014-04-03 23:55:12 +0200
committermux <freelancer.c@gmail.com>2014-04-03 23:55:12 +0200
commit4f7e9f5c445b5c0b262d9dfb8fceda4830f4844b (patch)
tree5c36d2f8e7fed3ff6bb0be15678a3063817c2081 /py/gc.h
parent094d450003185e64f14560ba3c107e02621c056c (diff)
Implement del
Diffstat (limited to 'py/gc.h')
-rw-r--r--py/gc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/gc.h b/py/gc.h
index c8a1a996c..f8aeb393a 100644
--- a/py/gc.h
+++ b/py/gc.h
@@ -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);