From 73827c106278cc5bb40a363d3472aa63e554e31d Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:18:05 +0000 Subject: [PATCH] Add missing static keywords to unexpand(1) --- usr.bin/unexpand/unexpand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/unexpand/unexpand.c b/usr.bin/unexpand/unexpand.c index 828ab108174..1ef5db1927d 100644 --- a/usr.bin/unexpand/unexpand.c +++ b/usr.bin/unexpand/unexpand.c @@ -55,9 +55,9 @@ static const char sccsid[] = "@(#)unexpand.c 8.1 (Berkeley) 6/6/93"; #include #include -int all; -int nstops; -int tabstops[100]; +static int all; +static int nstops; +static int tabstops[100]; static void getstops(const char *); static void usage(void);