diff options
-rw-r--r-- | editors/sed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c index 726ebbd0c..32116fd29 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -122,9 +122,9 @@ struct append_list { | |||
122 | }; | 122 | }; |
123 | static struct append_list *append_head=NULL, *append_tail=NULL; | 123 | static struct append_list *append_head=NULL, *append_tail=NULL; |
124 | 124 | ||
125 | static void free_and_close_stuff(void); | 125 | void sed_free_and_close_stuff(void); |
126 | #if ENABLE_FEATURE_CLEAN_UP | 126 | #if ENABLE_FEATURE_CLEAN_UP |
127 | static void free_and_close_stuff(void) | 127 | void sed_free_and_close_stuff(void) |
128 | { | 128 | { |
129 | sed_cmd_t *sed_cmd = sed_cmd_head.next; | 129 | sed_cmd_t *sed_cmd = sed_cmd_head.next; |
130 | 130 | ||
@@ -1113,7 +1113,7 @@ extern int sed_main(int argc, char **argv) | |||
1113 | int status = EXIT_SUCCESS, opt, getpat = 1; | 1113 | int status = EXIT_SUCCESS, opt, getpat = 1; |
1114 | 1114 | ||
1115 | /* destroy command strings on exit */ | 1115 | /* destroy command strings on exit */ |
1116 | if (ENABLE_FEATURE_CLEAN_UP && atexit(free_and_close_stuff) == -1) | 1116 | if (ENABLE_FEATURE_CLEAN_UP && atexit(sed_free_and_close_stuff) == -1) |
1117 | bb_perror_msg_and_die("atexit"); | 1117 | bb_perror_msg_and_die("atexit"); |
1118 | 1118 | ||
1119 | /* Lie to autoconf when it starts asking stupid questions. */ | 1119 | /* Lie to autoconf when it starts asking stupid questions. */ |