search for: grow_config

Displaying 1 result from an estimated 1 matches for "grow_config".

Did you mean: cow_config
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...;\n"); exit(1); } -void print_cmdline(void) +static void print_cmdline(void) { printf("cmd_%s := %s\n\n", target, cmdline); } @@ -143,7 +142,7 @@ int len_config = 0; * Grow the configuration string to a desired length. * Usually the first growth is plenty. */ -void grow_config(int len) +static void grow_config(int len) { while (len_config + len > size_config) { if (size_config == 0) @@ -159,7 +158,7 @@ void grow_config(int len) /* * Lookup a value in the configuration string. */ -int is_defined_config(const char * name, int len) +static int is_defined_confi...