From a4b8ce8223f4587a7b498117af57c9cb6f96f0d4 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 16 Jul 2012 18:46:44 +0200 Subject: [PATCH] colrm: fix compiler warning [-Wmissing-prototypes] Signed-off-by: Karel Zak --- text-utils/colrm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3