diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gistatic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gistatic.c b/src/gistatic.c index 6611d1b..2ab7865 100644 --- a/src/gistatic.c +++ b/src/gistatic.c @@ -18,11 +18,11 @@ #define COLOUR_GREEN "\033[0;32m" #define COLOUR_YELLOW "\033[0;33m" -void test_start(const char *const name) { +static void test_start(const char *const name) { assert(fprintf(stderr, "%s():\n", name) > 0); } -void testing(const char *const message) { +static void testing(const char *const message) { assert( fprintf( stderr, @@ -32,7 +32,7 @@ void testing(const char *const message) { ); } -void test_ok() { +static void test_ok() { assert(fprintf(stderr, " " COLOUR_GREEN "OK" COLOUR_RESET ".\n") > 0); } #endif |