X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=wc.c;h=695e7e7d4e4b765b1954d5ecb5d9ea11f1128a10;hb=3a6da8c183142a2681a2382b63e970f457cf807b;hp=f2d33d6f355f2c1155c273f5f2c360cf7b0a30eb;hpb=cbe31dace5fb24304694d399b9eb267fbe752516;p=oweals%2Fbusybox.git diff --git a/wc.c b/wc.c index f2d33d6f3..695e7e7d4 100644 --- a/wc.c +++ b/wc.c @@ -22,14 +22,15 @@ #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 = "";