aboutsummaryrefslogtreecommitdiff
path: root/py/malloc.c
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/malloc.c
parent94186c82396dee2f70785bf9e241780f29275870 (diff)
Fix func decls with no arguments: () -> (void).
Diffstat (limited to 'py/malloc.c')
-rw-r--r--py/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/malloc.c b/py/malloc.c
index 8775f68aa..2f8b5f78b 100644
--- a/py/malloc.c
+++ b/py/malloc.c
@@ -51,6 +51,6 @@ void *m_realloc(void *ptr, int num_bytes) {
return ptr;
}
-int m_get_total_bytes_allocated() {
+int m_get_total_bytes_allocated(void) {
return total_bytes_allocated;
}