aboutsummaryrefslogtreecommitdiff
path: root/py/gc.h
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-23 20:20:17 +0100
committerDamien <damien.p.george@gmail.com>2013-10-23 20:20:17 +0100
commit8b3a7c2237d74b84eb7ff9fe4b6cd5888545f2af (patch)
tree876d0481e9c06c2d280dd3e602335a3aad977915 /py/gc.h
parent94186c82396dee2f70785bf9e241780f29275870 (diff)
Fix func decls with no arguments: () -> (void).
Diffstat (limited to 'py/gc.h')
-rw-r--r--py/gc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/py/gc.h b/py/gc.h
index d5b5fcc91..711212ac4 100644
--- a/py/gc.h
+++ b/py/gc.h
@@ -1,8 +1,8 @@
void gc_init(void *start, void *end);
-void gc_collect_start();
+void gc_collect_start(void);
void gc_collect_root(void **ptrs, machine_uint_t len);
-void gc_collect_end();
-void gc_collect();
+void gc_collect_end(void);
+void gc_collect(void);
void *gc_alloc(machine_uint_t n_bytes);
void gc_free(void *ptr);
machine_uint_t gc_nbytes(void *ptr);