Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Nov 2011 08:15:24 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r227165 - head/usr.bin/fold
Message-ID:  <201111060815.pA68FOb5008381@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ed
Date: Sun Nov  6 08:15:23 2011
New Revision: 227165
URL: http://svn.freebsd.org/changeset/base/227165

Log:
  Add missing static keywords to fold(1)

Modified:
  head/usr.bin/fold/fold.c

Modified: head/usr.bin/fold/fold.c
==============================================================================
--- head/usr.bin/fold/fold.c	Sun Nov  6 08:15:17 2011	(r227164)
+++ head/usr.bin/fold/fold.c	Sun Nov  6 08:15:23 2011	(r227165)
@@ -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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111060815.pA68FOb5008381>