diff options
Diffstat (limited to 'editors/sed.c')
-rw-r--r-- | editors/sed.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/editors/sed.c b/editors/sed.c index 7ed9937..9d800c2 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -12,7 +12,6 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ - /* Code overview. * * Files are laid out to avoid unnecessary function declarations. So for @@ -29,7 +28,6 @@ * * sed_main() is where external code calls into this, with a command line. */ - /* Supported features and commands in this version of sed: * * - comments ('#') @@ -55,7 +53,6 @@ * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html * http://sed.sourceforge.net/sedfaq3.html */ - //config:config SED //config: bool "sed (12 kb)" //config: default y @@ -63,10 +60,10 @@ //config: sed is used to perform text transformations on a file //config: or input from a pipeline. -//kbuild:lib-$(CONFIG_SED) += sed.o - //applet:IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP)) +//kbuild:lib-$(CONFIG_SED) += sed.o + //usage:#define sed_trivial_usage //usage: "[-i[SFX]] [-nrE] [-f FILE]... [-e CMD]... [FILE]...\n" //usage: "or: sed [-i[SFX]] [-nrE] CMD [FILE]..." |