From ad8f6a3513f8b54f4e80adfcc22cab37dce40a2b Mon Sep 17 00:00:00 2001 From: aldot Date: Mon, 28 Aug 2006 23:39:36 +0000 Subject: - it's a mistake to remove lib-specific prefixes from libraries; still the removal should be complete. git-svn-id: svn://busybox.net/trunk/busybox@16010 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- docs/new-applet-HOWTO.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 7acc80bb2..1c2383f35 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt @@ -40,7 +40,7 @@ int mu_main(int argc, char **argv) int fd; char mu; - fd = bb_xopen("/dev/random", O_RDONLY); + fd = xopen("/dev/random", O_RDONLY); if ((n = safe_read(fd, &mu, 1)) < 1) bb_perror_msg_and_die("/dev/random"); -- cgit v1.2.3-55-g6feb