code style

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>
This commit is contained in:
Hiltjo Posthuma
2014-06-01 14:59:47 +02:00
committed by sin
parent 97ca7c8b6d
commit 953ebf3573
35 changed files with 58 additions and 94 deletions

5
test.c
View File

@@ -55,7 +55,7 @@ main(int argc, char *argv[])
return ret ? EXIT_SUCCESS : EXIT_FAILURE;
}
bool
static bool
unary(const char *op, const char *arg)
{
struct stat st;
@@ -112,7 +112,7 @@ unary(const char *op, const char *arg)
return false; /* should not reach */
}
bool
static bool
binary(const char *arg1, const char *op, const char *arg2)
{
int i;
@@ -156,4 +156,3 @@ binary(const char *arg1, const char *op, const char *arg2)
}
return false;
}