aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/nodes.c.pat
diff options
context:
space:
mode:
authorDiomidis Spinellis <dds@FreeBSD.org>2003-07-05 15:18:44 +0000
committerDiomidis Spinellis <dds@FreeBSD.org>2003-07-05 15:18:44 +0000
commit2ba1b30bf50f04ab147452cfba7a3b9899f1d59c (patch)
treeb3c2aa55b49d1fcca627aec69e1e5a16b264b51d /bin/sh/nodes.c.pat
parentcf3574284719d98bca0fa10588677f35f2e8202f (diff)
downloadsrc-2ba1b30bf50f04ab147452cfba7a3b9899f1d59c.tar.gz
src-2ba1b30bf50f04ab147452cfba7a3b9899f1d59c.zip
Changes following CScout analysis:
- Removed dead declarations - Made objects that should have been declared as static, static. The changes use STATIC instead of static, following the existing convention in the rest of the code. Approved by: schweikh (mentor) MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=117261
Diffstat (limited to 'bin/sh/nodes.c.pat')
-rw-r--r--bin/sh/nodes.c.pat8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat
index 80541b038e0d..631961337e0a 100644
--- a/bin/sh/nodes.c.pat
+++ b/bin/sh/nodes.c.pat
@@ -49,10 +49,10 @@
#include "mystring.h"
-int funcblocksize; /* size of structures in function */
-int funcstringsize; /* size of strings in node */
-pointer funcblock; /* block to allocate function from */
-char *funcstring; /* block to allocate strings from */
+STATIC int funcblocksize; /* size of structures in function */
+STATIC int funcstringsize; /* size of strings in node */
+STATIC pointer funcblock; /* block to allocate function from */
+STATIC char *funcstring; /* block to allocate strings from */
%SIZES