find: support -HLP
[oweals/busybox.git] / docs / new-applet-HOWTO.txt
index 8a825b998d135544ce01cc1f6c902d88a36d7039..6a8054d0e88e412d3b54bb35c0a44fd55137020c 100644 (file)
@@ -19,8 +19,7 @@ such as who you stole the code from and so forth. Also include the mini-GPL
 boilerplate. Be sure to name the main function <applet>_main instead of main.
 And be sure to put it in <applet>.c. Usage does not have to be taken care of by
 your applet.
-Make sure to #include "libbb.h" as the first include file in your applet so
-the bb_config.h and appropriate platform specific files are included properly.
+Make sure to #include "libbb.h" as the first include file in your applet.
 
 For a new applet mu, here is the code that would go in mu.c:
 
@@ -162,7 +161,7 @@ algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily:
 Be sure to read the top of applets.src.h before adding your applet.
 
        /* all programs above here are alphabetically "less than" 'mu' */
-       IF_MU(APPLET(mu, _BB_DIR_USR_BIN, _BB_SUID_DROP))
+       IF_MU(APPLET(mu, BB_DIR_USR_BIN, BB_SUID_DROP))
        /* all programs below here are alphabetically "greater than" 'mu' */