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

@@ -7,7 +7,7 @@ static int qstrs_alloc;
static int qstrs_len;
static const char **qstrs;
void qstr_init() {
void qstr_init(void) {
qstrs_alloc = 400;
qstrs_len = 1;
qstrs = m_new(const char*, qstrs_alloc);