Fix func decls with no arguments: () -> (void).
diff --git a/py/vstr.c b/py/vstr.c
index fc7a772..076c3a3 100644
--- a/py/vstr.c
+++ b/py/vstr.c
@@ -24,7 +24,7 @@
     vstr->buf = NULL;
 }
 
-vstr_t *vstr_new() {
+vstr_t *vstr_new(void) {
     vstr_t *vstr = m_new(vstr_t, 1);
     if (vstr == NULL) {
         return NULL;
@@ -193,7 +193,7 @@
 /** testing *****************************************************/
 
 /*
-int main() {
+int main(void) {
     vstr_t *vstr = vstr_new();
     int i;
     for (i = 0; i < 10; i++) {