From: Karel Zak Date: Mon, 16 Jul 2012 16:46:44 +0000 (+0200) Subject: colrm: fix compiler warning [-Wmissing-prototypes] X-Git-Tag: v2.22-rc1~137 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4b8ce8223f4587a7b498117af57c9cb6f96f0d4;p=thirdparty%2Futil-linux.git colrm: fix compiler warning [-Wmissing-prototypes] Signed-off-by: Karel Zak --- diff --git a/text-utils/colrm.c b/text-utils/colrm.c index 910d933a29..a241fb8f24 100644 --- a/text-utils/colrm.c +++ b/text-utils/colrm.c @@ -70,7 +70,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS); } -int process_input(unsigned long first, unsigned long last) +static int process_input(unsigned long first, unsigned long last) { unsigned long ct = 0; wint_t c;