aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-30 00:29:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-30 00:29:55 +0000
commit4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b (patch)
tree7dfc507c1a7d14fb61d4fd0c68481e01b4a36ba1 /docs
parent4ef7d3a2de3df27dde80a64987202f10aebfe925 (diff)
downloadbusybox-w32-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.tar.gz
busybox-w32-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.tar.bz2
busybox-w32-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.zip
whitespace fixes
Diffstat (limited to 'docs')
-rw-r--r--docs/new-applet-HOWTO.txt12
-rw-r--r--docs/nofork_noexec.txt2
2 files changed, 7 insertions, 7 deletions
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt
index 2bc938f14..05ff92f26 100644
--- a/docs/new-applet-HOWTO.txt
+++ b/docs/new-applet-HOWTO.txt
@@ -97,15 +97,15 @@ int function(char *a)
97 97
98----end example code------ 98----end example code------
99 99
100Add <function_name>.o in the right alphabetically sorted place 100Add <function_name>.o in the right alphabetically sorted place
101in libbb/Kbuild. You should look at the conditional part of 101in libbb/Kbuild. You should look at the conditional part of
102libbb/Kbuild aswell. 102libbb/Kbuild aswell.
103 103
104You should also try to find a suitable place in include/libbb.h for 104You should also try to find a suitable place in include/libbb.h for
105the function declaration. If not, add it somewhere anyway, with or without 105the function declaration. If not, add it somewhere anyway, with or without
106ifdefs to include or not. 106ifdefs to include or not.
107 107
108You can look at libbb/Config.in and try to find out if the function is 108You can look at libbb/Config.in and try to find out if the function is
109tuneable and add it there if it is. 109tuneable and add it there if it is.
110 110
111 111
@@ -170,10 +170,10 @@ The Grand Announcement
170 170
171Then create a diff by adding the new files with svn (remember your libbb files) 171Then create a diff by adding the new files with svn (remember your libbb files)
172 svn add <where you put it>/mu.c 172 svn add <where you put it>/mu.c
173eventually also: 173eventually also:
174 svn add libbb/function.c 174 svn add libbb/function.c
175then 175then
176 svn diff 176 svn diff
177and send it to the mailing list: 177and send it to the mailing list:
178 busybox@busybox.net 178 busybox@busybox.net
179 http://busybox.net/mailman/listinfo/busybox 179 http://busybox.net/mailman/listinfo/busybox
diff --git a/docs/nofork_noexec.txt b/docs/nofork_noexec.txt
index 51bbcba3b..d4abdf452 100644
--- a/docs/nofork_noexec.txt
+++ b/docs/nofork_noexec.txt
@@ -12,7 +12,7 @@ are exactly those applets which are eligible for these tricks.
12 12
13Applet will be subject to NOFORK/NOEXEC tricks if it is marked as such 13Applet will be subject to NOFORK/NOEXEC tricks if it is marked as such
14in applets.h. CONFIG_FEATURE_PREFER_APPLETS is a config option which 14in applets.h. CONFIG_FEATURE_PREFER_APPLETS is a config option which
15globally enables usage of NOFORK/NOEXEC tricks. 15globally enables usage of NOFORK/NOEXEC tricks.
16 16
17If you want to call a program and wait for it, use spawn_and_wait(argv). 17If you want to call a program and wait for it, use spawn_and_wait(argv).
18It will check whether argv[0] is an applet name and will optionally 18It will check whether argv[0] is an applet name and will optionally