diff options
author | Denis Vlasenko | 2007-11-04 04:46:46 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-11-04 04:46:46 +0000 |
commit | 360362dc5768e4ad4924fda677f6b7cedec24256 (patch) | |
tree | 9318faa32772cb3ece5fb7e0a5ac7853c1df233e /docs/new-applet-HOWTO.txt | |
parent | 06200348be215b3cc84ee5ba75a5c77e526ed073 (diff) | |
download | busybox-360362dc5768e4ad4924fda677f6b7cedec24256.zip busybox-360362dc5768e4ad4924fda677f6b7cedec24256.tar.gz |
docs: fix new-applet-HOWTO.txt, delete ipv4_ipv6.txt (it's obsolete)
Diffstat (limited to 'docs/new-applet-HOWTO.txt')
-rw-r--r-- | docs/new-applet-HOWTO.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 37a78e9..6f89cbe 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt @@ -46,6 +46,7 @@ int mu_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int mu_main(int argc, char **argv) { int fd; + ssize_t n; char mu; fd = xopen("/dev/random", O_RDONLY); @@ -123,7 +124,7 @@ lib-$(CONFIG_MU) += mu.o Add the applet to Config.in in the chosen directory: -config CONFIG_MU +config MU bool "MU" default n help |