aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-30 00:05:16 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-30 00:05:16 +0000
commitb4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108 (patch)
treeacdaed5a8bcaec14fb82c983a3e2b9f907738c64
parentc64e554ad67c0f20ef27cd99446668ed16fe21f4 (diff)
downloadfetchmail-b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108.tar.gz
fetchmail-b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108.tar.bz2
fetchmail-b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108.zip
Seal off some more functions.
svn path=/trunk/; revision=429
-rw-r--r--rcfile_y.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index 32bc4716..2b3b7cd7 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -30,8 +30,8 @@ int yydebug; /* in case we didn't generate with -- debug */
static struct query current; /* current server record */
static int prc_errflag;
-void prc_register();
-void prc_reset();
+static void prc_register();
+static void prc_reset();
%}
%union {
@@ -228,7 +228,7 @@ const char *pathname; /* pathname for the configuration file */
return(0);
}
-void prc_reset()
+static void prc_reset()
/* clear the global current record (server parameters) used by the parser */
{
char savename[HOSTLEN+1];
@@ -273,7 +273,7 @@ struct query *init; /* pointer to block containing initial values */
return(node);
}
-void prc_register()
+static void prc_register()
/* register current parameters and append to the host list */
{
#define STR_FORCE(fld, len) if (cmd_opts.fld[0]) \