diff options
author | Denis Vlasenko | 2007-05-26 19:00:18 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-05-26 19:00:18 +0000 |
commit | b6adbf1be29841501cc49917249e85f273e1df7c (patch) | |
tree | e28a5603e6009b2479e949b8b9b4aa0620fed400 /runit | |
parent | 5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 (diff) | |
download | busybox-b6adbf1be29841501cc49917249e85f273e1df7c.zip busybox-b6adbf1be29841501cc49917249e85f273e1df7c.tar.gz |
usage.c: remove reference to busybox.h
*: s/include "busybox.h"/include "libbb.h"
Diffstat (limited to 'runit')
-rw-r--r-- | runit/chpst.c | 2 | ||||
-rw-r--r-- | runit/runsv.c | 2 | ||||
-rw-r--r-- | runit/runsvdir.c | 2 | ||||
-rw-r--r-- | runit/sv.c | 2 | ||||
-rw-r--r-- | runit/svlogd.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/runit/chpst.c b/runit/chpst.c index 7b90784..8eb1e8a 100644 --- a/runit/chpst.c +++ b/runit/chpst.c @@ -28,7 +28,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /* Busyboxed by Denis Vlasenko <vda.linux@googlemail.com> */ /* Dependencies on runit_lib.c removed */ -#include "busybox.h" +#include "libbb.h" #include <dirent.h> diff --git a/runit/runsv.c b/runit/runsv.c index d5bfd4e..20f8495 100644 --- a/runit/runsv.c +++ b/runit/runsv.c @@ -30,7 +30,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <sys/poll.h> #include <sys/file.h> -#include "busybox.h" +#include "libbb.h" #include "runit_lib.h" static int selfpipe[2]; diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 4b94aa2..8db0fc1 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c @@ -30,7 +30,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <sys/poll.h> #include <sys/file.h> -#include "busybox.h" +#include "libbb.h" #include "runit_lib.h" #define MAXSERVICES 1000 @@ -153,7 +153,7 @@ Exit Codes #include <sys/poll.h> #include <sys/file.h> -#include "busybox.h" +#include "libbb.h" #include "runit_lib.h" static const char *acts; diff --git a/runit/svlogd.c b/runit/svlogd.c index 4e9644f..08e0b64 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c @@ -30,7 +30,7 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <sys/poll.h> #include <sys/file.h> -#include "busybox.h" +#include "libbb.h" #include "runit_lib.h" static unsigned verbose; |