From 8c1eda528a19b8af18568649e8d2b1ba5bda772e Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer 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. --- TODO | 2 +- docs/new-applet-HOWTO.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index c603a1651..719bdb325 100644 --- a/TODO +++ b/TODO @@ -255,7 +255,7 @@ FEATURE_CLEAN_UP jumps out of the normal flow control and bypasses any cleanup code we put at the end of our applets. - It's possible to add hooks to libbb functions like xmalloc() and bb_xopen() + It's possible to add hooks to libbb functions like xmalloc() and xopen() to add their entries to a linked list, which could be traversed and freed/closed automatically. (This would need to be able to free just the entries after a checkpoint to be usable for a forkless standalone shell. 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