aboutsummaryrefslogtreecommitdiff
path: root/docs/new-applet-HOWTO.txt
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2000-12-19 19:44:35 +0000
committerMark Whitley <markw@lineo.com>2000-12-19 19:44:35 +0000
commit8eb5985f94a3f8a08c9e80274019175ea87c76b9 (patch)
treead69ea4340f36efa79f309058b451b8349dbe0ca /docs/new-applet-HOWTO.txt
parent8a6b619c96e1aa5cc2994614547951d8248d276f (diff)
downloadbusybox-w32-8eb5985f94a3f8a08c9e80274019175ea87c76b9.tar.gz
busybox-w32-8eb5985f94a3f8a08c9e80274019175ea87c76b9.tar.bz2
busybox-w32-8eb5985f94a3f8a08c9e80274019175ea87c76b9.zip
More spelling fixes from Larry Doolittle.
Diffstat (limited to 'docs/new-applet-HOWTO.txt')
-rw-r--r--docs/new-applet-HOWTO.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt
index 638526a0c..90e124d01 100644
--- a/docs/new-applet-HOWTO.txt
+++ b/docs/new-applet-HOWTO.txt
@@ -78,7 +78,7 @@ useful functions in utility.c. Use these instead of reinventing the wheel.
78 78
79If you use functions from utility.c, you may need to add to the preprocessor 79If you use functions from utility.c, you may need to add to the preprocessor
80conditionals in that file, to make sure the routines you need are included. 80conditionals in that file, to make sure the routines you need are included.
81So, since your mu implementation used safe_read(), append "|| define BB_MU" to 81So, since your mu implementation used safe_read(), append "|| defined BB_MU" to
82the #if instruction that precedes the safe_read() function in utility.c . 82the #if instruction that precedes the safe_read() function in utility.c .
83 83
84Additionally, if you have any useful, general-purpose functions in your 84Additionally, if you have any useful, general-purpose functions in your
@@ -103,7 +103,7 @@ the following:
103If your program supports flags, the flags should be mentioned on the first 103If your program supports flags, the flags should be mentioned on the first
104line (mu -[bcRovma]) and a detailed description of each flag should go in the 104line (mu -[bcRovma]) and a detailed description of each flag should go in the
105BB_FEATURE_TRIVIAL_HELP section, one flag per line. (Numerous examples of this 105BB_FEATURE_TRIVIAL_HELP section, one flag per line. (Numerous examples of this
106currently exist in utility.c.) 106currently exist in usage.c.)
107 107
108 108
109Header Files 109Header Files