- silence warning about "'free_and_close_stuff' used but never defined"
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 2 Mar 2006 10:06:22 +0000 (10:06 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Thu, 2 Mar 2006 10:06:22 +0000 (10:06 -0000)
editors/sed.c

index 726ebbd0c8bb73f5cb8940f042c6439f307d51d2..32116fd29ddd9f0d70d064025f15287f099b38d9 100644 (file)
@@ -122,9 +122,9 @@ struct append_list {
 };
 static struct append_list *append_head=NULL, *append_tail=NULL;
 
-static void free_and_close_stuff(void);
+void sed_free_and_close_stuff(void);
 #if ENABLE_FEATURE_CLEAN_UP
-static void free_and_close_stuff(void)
+void sed_free_and_close_stuff(void)
 {
        sed_cmd_t *sed_cmd = sed_cmd_head.next;
 
@@ -1113,7 +1113,7 @@ extern int sed_main(int argc, char **argv)
        int status = EXIT_SUCCESS, opt, getpat = 1;
 
        /* destroy command strings on exit */
-       if (ENABLE_FEATURE_CLEAN_UP && atexit(free_and_close_stuff) == -1)
+       if (ENABLE_FEATURE_CLEAN_UP && atexit(sed_free_and_close_stuff) == -1)
                bb_perror_msg_and_die("atexit");
 
        /* Lie to autoconf when it starts asking stupid questions. */