aboutsummaryrefslogtreecommitdiff
path: root/editors/sed.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-01 20:14:16 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-01 20:14:16 +0000
commitb7f39732f8f20b88d1b5e90d84dd607205f7d79f (patch)
treeae4fa52bf170cb437813abb093a264705e0462ad /editors/sed.c
parente7c43b66d74ee9902a6732122788a7a16bcfbf18 (diff)
downloadbusybox-b7f39732f8f20b88d1b5e90d84dd607205f7d79f.tar.gz
- fix compilation of sed.
error: static declaration of 'free_and_close_stuff' follows non-static declaration Tiny whitespace cleanup while at it, also make sure that we don't use CONFIG_ anymore. Rob, hope this is ok w/ you..
Diffstat (limited to 'editors/sed.c')
-rw-r--r--editors/sed.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/editors/sed.c b/editors/sed.c
index f58f442e8..726ebbd0c 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -9,7 +9,7 @@
* Copyright (C) 2003,2004 by Rob Landley <rob@landley.net>
*
* MAINTAINER: Rob Landley <rob@landley.net>
- *
+ *
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
@@ -76,7 +76,7 @@ typedef struct sed_cmd_s {
regex_t *sub_match; /* For 's/sub_match/string/' */
int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */
-
+
FILE *file; /* File (sw) command writes to, -1 for none. */
char *string; /* Data string for (saicytb) commands. */
@@ -122,8 +122,8 @@ struct append_list {
};
static struct append_list *append_head=NULL, *append_tail=NULL;
-void free_and_close_stuff(void);
-#ifdef CONFIG_FEATURE_CLEAN_UP
+static void free_and_close_stuff(void);
+#if ENABLE_FEATURE_CLEAN_UP
static void free_and_close_stuff(void)
{
sed_cmd_t *sed_cmd = sed_cmd_head.next;
@@ -1200,15 +1200,15 @@ extern int sed_main(int argc, char **argv)
if(-1==(nonstdoutfd=mkstemp(outname)))
bb_error_msg_and_die("no temp file");
nonstdout=fdopen(nonstdoutfd,"w");
-
+
/* Set permissions of output file */
-
+
fstat(fileno(file),&statbuf);
fchmod(nonstdoutfd,statbuf.st_mode);
add_input_file(file);
process_files();
fclose(nonstdout);
-
+
nonstdout=stdout;
unlink(argv[i]);
rename(outname,argv[i]);