summaryrefslogtreecommitdiff
path: root/soltools/mkdepend/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'soltools/mkdepend/main.c')
-rw-r--r--soltools/mkdepend/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/soltools/mkdepend/main.c b/soltools/mkdepend/main.c
index c156c19b2019..997ba6dbb87d 100644
--- a/soltools/mkdepend/main.c
+++ b/soltools/mkdepend/main.c
@@ -120,16 +120,16 @@ void redirect(char * makefile);
struct inclist inclist[ MAXFILES ],
*inclistp = inclist;
-struct symhash *maininclist = NULL;
+static struct symhash *maininclist = NULL;
char *filelist[ MAXFILES ];
char *includedirs[ MAXDIRS + 1 ];
char *notdotdot[ MAXDIRS ];
char *objprefix = "";
char *objsuffix = OBJSUFFIX;
-char *startat = "# DO NOT DELETE";
-int width = 78;
-boolean append = FALSE;
+static char *startat = "# DO NOT DELETE";
+static int width = 78;
+static boolean append = FALSE;
boolean printed = FALSE;
boolean verbose = FALSE;
boolean show_where_not = FALSE;
@@ -161,7 +161,7 @@ catch (int sig)
struct sigaction sig_act;
#endif /* USGISH */
-boolean native_win_slashes = FALSE;
+static boolean native_win_slashes = FALSE;
int main(int argc, char **argv)
{