diff options
author | ed <ed@FreeBSD.org> | 2011-11-06 08:14:28 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2011-11-06 08:14:28 +0000 |
commit | 5d1bcc94a89e7786cff7cb0d30b14f93abb7b9ae (patch) | |
tree | 65d4b2fb2e2e8783334ccade72cc83d0d8f32b47 | |
parent | 61bd4fddd230f6e48500d11d8d8cfe548337d276 (diff) | |
download | FreeBSD-src-5d1bcc94a89e7786cff7cb0d30b14f93abb7b9ae.zip FreeBSD-src-5d1bcc94a89e7786cff7cb0d30b14f93abb7b9ae.tar.gz |
Add missing static keywords to colcrt(1)
-rw-r--r-- | usr.bin/colcrt/colcrt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/colcrt/colcrt.c b/usr.bin/colcrt/colcrt.c index 8d08cea..7ac274b 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); |