From 0ea3a6f660d890368d22fc7d3543487f825b2f1b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 23 Apr 2005 01:43:45 +0000 Subject: update example to use bb_ prefixed names and remove old note about config.h (since the header is generated automatically now) --- docs/new-applet-HOWTO.txt | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'docs/new-applet-HOWTO.txt') diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 2fc95d36d..605974c3a 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt @@ -52,10 +52,10 @@ int mu_main(int argc, char **argv) char mu; if ((fd = open("/dev/random", O_RDONLY)) < 0) - perror_msg_and_die("/dev/random"); + bb_perror_msg_and_die("/dev/random"); if ((n = safe_read(fd, &mu, 1)) < 1) - perror_msg_and_die("/dev/random"); + bb_perror_msg_and_die("/dev/random"); return mu; } @@ -137,11 +137,6 @@ algorithm in busybox.c and the Gods of BusyBox smite you. Yea, verily: /* all programs below here are alphabetically "greater than" 'mu' */ -Finally, add a define for your applet to include/config.h - - #undef CONFIG_MU - - Documentation ------------- -- cgit v1.2.3