jfb2 writes in Bug 119:
[oweals/busybox.git] / coreutils / test.c
index cec3c471d1ba4fc0fcf82a74f448e4a664b2de18..3da2daecd9a7d6d91b6e44d04c1a67738f6ef665 100644 (file)
@@ -310,7 +310,7 @@ static arith_t primary(enum token n)
        return strlen(*t_wp) > 0;
 }
 
-static int binop()
+static int binop(void)
 {
        const char *opnd1, *opnd2;
        struct t_op const *op;
@@ -537,7 +537,7 @@ static int test_eaccess(char *path, int mode)
        return (-1);
 }
 
-static void initialize_group_array()
+static void initialize_group_array(void)
 {
        ngroups = getgroups(0, NULL);
        group_array = xrealloc(group_array, ngroups * sizeof(gid_t));