svn commit: r227165 - head/usr.bin/fold

Ed Schouten ed at FreeBSD.org
Sun Nov 6 08:15:24 UTC 2011


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)


More information about the svn-src-head mailing list