Displaying 1 result from an estimated 1 matches for "len_config".
Did you mean:
  xen_config
  
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...age(void)
-
+static void usage(void)
 {
 	fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\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)
 /*
  * Look...