svn commit: r227243 - head/usr.bin/unifdef

Ed Schouten ed at FreeBSD.org
Sun Nov 6 18:50:07 UTC 2011


Author: ed
Date: Sun Nov  6 18:50:00 2011
New Revision: 227243
URL: http://svn.freebsd.org/changeset/base/227243

Log:
  Mark global functions and/or variables in unifdef(1) static where possible.
  
  This allows compilers and static analyzers to more thorough analysis.

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

Modified: head/usr.bin/unifdef/unifdef.c
==============================================================================
--- head/usr.bin/unifdef/unifdef.c	Sun Nov  6 18:49:53 2011	(r227242)
+++ head/usr.bin/unifdef/unifdef.c	Sun Nov  6 18:50:00 2011	(r227243)
@@ -56,7 +56,7 @@
 #include <string.h>
 #include <unistd.h>
 
-const char copyright[] =
+static const char copyright[] =
     "@(#) $Version: unifdef-2.5.6.21f1388 $\n"
     "@(#) $FreeBSD$\n"
     "@(#) $Author: Tony Finch (dot at dotat.at) $\n"


More information about the svn-src-all mailing list