diff options
Diffstat (limited to 'py/gc.h')
-rw-r--r-- | py/gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ void gc_collect_end(void); void *gc_alloc(mp_uint_t n_bytes, bool has_finaliser); void gc_free(void *ptr); -mp_uint_t gc_nbytes(void *ptr); +mp_uint_t gc_nbytes(const void *ptr); void *gc_realloc(void *ptr, mp_uint_t n_bytes); typedef struct _gc_info_t { |