From 385c1d290c2dbd96b1f04a32455b984a53938c39 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:15:23 +0000 Subject: [PATCH] Add missing static keywords to fold(1) --- usr.bin/fold/fold.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/fold/fold.c b/usr.bin/fold/fold.c index d577713a322d..1ce9b5eb3a92 100644 --- a/usr.bin/fold/fold.c +++ b/usr.bin/fold/fold.c @@ -61,8 +61,8 @@ void fold(int); static int newpos(int, wint_t); static void usage(void); -int bflag; /* Count bytes, not columns */ -int sflag; /* Split on word boundaries */ +static int bflag; /* Count bytes, not columns */ +static int sflag; /* Split on word boundaries */ int main(int argc, char **argv)