- make append_option and multiconvert static.
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 3 Apr 2006 15:46:14 +0000 (15:46 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 3 Apr 2006 15:46:14 +0000 (15:46 -0000)
coreutils/printf.c
modutils/modprobe.c

index 706fd9c45fdd9cebcd93f8474f4894c5c9e2c535..93b142765d509823e5bdfbb56e8cb54f712edcf3 100644 (file)
@@ -54,7 +54,7 @@ static void print_direc (char *start, size_t length,
                        int field_width, int precision, char *argument);
 
 typedef int (*converter)(char *arg, void *result);
-void multiconvert(char *arg, void *result, converter convert)
+static void multiconvert(char *arg, void *result, converter convert)
 {
        char s[16];
        if (*arg == '"' || *arg == '\'') {
index c16151537eca1ea9df273a17a06ab20a5126384e..8defd2854e1c9de228743c95c7147d0675faa4d2 100644 (file)
@@ -133,7 +133,7 @@ static char *reads ( int fd, char *buffer, size_t len )
 /*
  * This function appends an option to a list
  */
-struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt )
+static struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt )
 {
        struct mod_opt_t *ol = opt_list;