1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

Add missing static keywords to colcrt(1)

This commit is contained in:
Ed Schouten 2011-11-06 08:14:28 +00:00
parent ab8d971c3a
commit 78ea30bb9b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=227158

View File

@ -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);