diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-30 00:05:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-30 00:05:16 +0000 |
commit | b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108 (patch) | |
tree | acdaed5a8bcaec14fb82c983a3e2b9f907738c64 /rcfile_y.y | |
parent | c64e554ad67c0f20ef27cd99446668ed16fe21f4 (diff) | |
download | fetchmail-b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108.tar.gz fetchmail-b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108.tar.bz2 fetchmail-b4d8260de53fb2a7cea6b6cd8aa1f9fe5a1d1108.zip |
Seal off some more functions.
svn path=/trunk/; revision=429
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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]) \ |