Fix func decls with no arguments: () -> (void).

This commit is contained in:
Damien
2013-10-23 20:20:17 +01:00
parent 94186c8239
commit 8b3a7c2237
10 changed files with 30 additions and 30 deletions

View File

@@ -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;
}