diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2009-10-15 15:13:36 -0400 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2009-11-15 18:00:16 -0500 |
| commit | 65166571800af0f63f21e5576d7db12d2bf73790 (patch) | |
| tree | 42bae137b3966ff60c28619cd22c84cf20ec1c79 /scripts/kconfig/zconf.tab.c_shipped | |
| parent | 1456edbb1476db735715ddcc7ac306de587024eb (diff) | |
kconfig: Mark various internal functions static
kconfig's keyword hash, lexer, and parser define various functions used
only locally. Declare these functions as static, and regenerate the
corresponding generated files.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'scripts/kconfig/zconf.tab.c_shipped')
| -rw-r--r-- | scripts/kconfig/zconf.tab.c_shipped | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/kconfig/zconf.tab.c_shipped b/scripts/kconfig/zconf.tab.c_shipped index c42b439c5cc..6e9dcd59aa8 100644 --- a/scripts/kconfig/zconf.tab.c_shipped +++ b/scripts/kconfig/zconf.tab.c_shipped | |||
| @@ -2249,7 +2249,7 @@ void conf_parse(const char *name) | |||
| 2249 | sym_set_change_count(1); | 2249 | sym_set_change_count(1); |
| 2250 | } | 2250 | } |
| 2251 | 2251 | ||
| 2252 | const char *zconf_tokenname(int token) | 2252 | static const char *zconf_tokenname(int token) |
| 2253 | { | 2253 | { |
| 2254 | switch (token) { | 2254 | switch (token) { |
| 2255 | case T_MENU: return "menu"; | 2255 | case T_MENU: return "menu"; |
| @@ -2313,7 +2313,7 @@ static void zconferror(const char *err) | |||
| 2313 | #endif | 2313 | #endif |
| 2314 | } | 2314 | } |
| 2315 | 2315 | ||
| 2316 | void print_quoted_string(FILE *out, const char *str) | 2316 | static void print_quoted_string(FILE *out, const char *str) |
| 2317 | { | 2317 | { |
| 2318 | const char *p; | 2318 | const char *p; |
| 2319 | int len; | 2319 | int len; |
| @@ -2330,7 +2330,7 @@ void print_quoted_string(FILE *out, const char *str) | |||
| 2330 | putc('"', out); | 2330 | putc('"', out); |
| 2331 | } | 2331 | } |
| 2332 | 2332 | ||
| 2333 | void print_symbol(FILE *out, struct menu *menu) | 2333 | static void print_symbol(FILE *out, struct menu *menu) |
| 2334 | { | 2334 | { |
| 2335 | struct symbol *sym = menu->sym; | 2335 | struct symbol *sym = menu->sym; |
| 2336 | struct property *prop; | 2336 | struct property *prop; |
