X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=wc.c;h=695e7e7d4e4b765b1954d5ecb5d9ea11f1128a10;hb=3a6da8c183142a2681a2382b63e970f457cf807b;hp=f416874226bccd66f045df03908ad937565ae318;hpb=67991cf824f8df27e74c92d754fb507681c69ce6;p=oweals%2Fbusybox.git diff --git a/wc.c b/wc.c index f41687422..695e7e7d4 100644 --- a/wc.c +++ b/wc.c @@ -20,16 +20,17 @@ * */ -#include "busybox.h" #include #include +#include #include +#include "busybox.h" static int total_lines, total_words, total_chars, max_length; static int print_lines, print_words, print_chars, print_length; -void print_counts(int lines, int words, int chars, int length, - const char *name) +static void print_counts(int lines, int words, int chars, int length, + const char *name) { char const *space = "";