From 78ea30bb9b64988c6682b2ad0ae9df1134f0abec Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:14:28 +0000 Subject: [PATCH] Add missing static keywords to colcrt(1) --- usr.bin/colcrt/colcrt.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usr.bin/colcrt/colcrt.c b/usr.bin/colcrt/colcrt.c index 8d08cea7dc2..7ac274b793b 100644 --- a/usr.bin/colcrt/colcrt.c +++ b/usr.bin/colcrt/colcrt.c @@ -64,13 +64,13 @@ __FBSDID("$FreeBSD$"); * Option -2 forces printing of all half lines. */ -wchar_t page[267][132]; +static wchar_t page[267][132]; -int outline = 1; -int outcol; +static int outline = 1; +static int outcol; -char suppresul; -char printall; +static char suppresul; +static char printall; static void move(int, int); static void pflush(int);