diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-26 19:00:18 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-26 19:00:18 +0000 |
| commit | b6adbf1be29841501cc49917249e85f273e1df7c (patch) | |
| tree | e28a5603e6009b2479e949b8b9b4aa0620fed400 /debianutils | |
| parent | 5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 (diff) | |
| download | busybox-w32-b6adbf1be29841501cc49917249e85f273e1df7c.tar.gz busybox-w32-b6adbf1be29841501cc49917249e85f273e1df7c.tar.bz2 busybox-w32-b6adbf1be29841501cc49917249e85f273e1df7c.zip | |
usage.c: remove reference to busybox.h
*: s/include "busybox.h"/include "libbb.h"
Diffstat (limited to 'debianutils')
| -rw-r--r-- | debianutils/mktemp.c | 2 | ||||
| -rw-r--r-- | debianutils/pipe_progress.c | 2 | ||||
| -rw-r--r-- | debianutils/readlink.c | 6 | ||||
| -rw-r--r-- | debianutils/run_parts.c | 4 | ||||
| -rw-r--r-- | debianutils/start_stop_daemon.c | 3 | ||||
| -rw-r--r-- | debianutils/which.c | 2 |
6 files changed, 9 insertions, 10 deletions
diff --git a/debianutils/mktemp.c b/debianutils/mktemp.c index ce5bda515..966257aed 100644 --- a/debianutils/mktemp.c +++ b/debianutils/mktemp.c | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 9 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
| 10 | */ | 10 | */ |
| 11 | 11 | ||
| 12 | #include "busybox.h" | 12 | #include "libbb.h" |
| 13 | #include <stdio.h> | 13 | #include <stdio.h> |
| 14 | #include <errno.h> | 14 | #include <errno.h> |
| 15 | #include <string.h> | 15 | #include <string.h> |
diff --git a/debianutils/pipe_progress.c b/debianutils/pipe_progress.c index 51a017c98..f95008493 100644 --- a/debianutils/pipe_progress.c +++ b/debianutils/pipe_progress.c | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | #include "busybox.h" | 10 | #include "libbb.h" |
| 11 | #include <stdio.h> | 11 | #include <stdio.h> |
| 12 | #include <stdlib.h> | 12 | #include <stdlib.h> |
| 13 | #include <unistd.h> | 13 | #include <unistd.h> |
diff --git a/debianutils/readlink.c b/debianutils/readlink.c index 1a2c1efb7..b6b49651c 100644 --- a/debianutils/readlink.c +++ b/debianutils/readlink.c | |||
| @@ -7,12 +7,10 @@ | |||
| 7 | * Licensed under GPL v2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPL v2 or later, see file LICENSE in this tarball for details. |
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | #include "busybox.h" | ||
| 11 | #include <errno.h> | ||
| 12 | #include <unistd.h> | ||
| 13 | #include <stdlib.h> | ||
| 14 | #include <getopt.h> | 10 | #include <getopt.h> |
| 15 | 11 | ||
| 12 | #include "libbb.h" | ||
| 13 | |||
| 16 | int readlink_main(int argc, char **argv); | 14 | int readlink_main(int argc, char **argv); |
| 17 | int readlink_main(int argc, char **argv) | 15 | int readlink_main(int argc, char **argv) |
| 18 | { | 16 | { |
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index e6dec04bc..cb4a4e4c7 100644 --- a/debianutils/run_parts.c +++ b/debianutils/run_parts.c | |||
| @@ -30,10 +30,10 @@ | |||
| 30 | * -u MASK umask. Set the umask of the program executed to MASK. | 30 | * -u MASK umask. Set the umask of the program executed to MASK. |
| 31 | */ | 31 | */ |
| 32 | 32 | ||
| 33 | |||
| 34 | #include "busybox.h" | ||
| 35 | #include <getopt.h> | 33 | #include <getopt.h> |
| 36 | 34 | ||
| 35 | #include "libbb.h" | ||
| 36 | |||
| 37 | #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS | 37 | #if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS |
| 38 | static const struct option runparts_long_options[] = { | 38 | static const struct option runparts_long_options[] = { |
| 39 | { "arg", 1, NULL, 'a' }, | 39 | { "arg", 1, NULL, 'a' }, |
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 1154794fd..0681a085c 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
| @@ -8,10 +8,11 @@ | |||
| 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #include "busybox.h" | ||
| 12 | #include <getopt.h> | 11 | #include <getopt.h> |
| 13 | #include <sys/resource.h> | 12 | #include <sys/resource.h> |
| 14 | 13 | ||
| 14 | #include "libbb.h" | ||
| 15 | |||
| 15 | static int signal_nr = 15; | 16 | static int signal_nr = 15; |
| 16 | static int user_id = -1; | 17 | static int user_id = -1; |
| 17 | static char *userspec; | 18 | static char *userspec; |
diff --git a/debianutils/which.c b/debianutils/which.c index 02992d0f6..2c71ed32d 100644 --- a/debianutils/which.c +++ b/debianutils/which.c | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | * Based on which from debianutils | 10 | * Based on which from debianutils |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include "busybox.h" | 13 | #include "libbb.h" |
| 14 | 14 | ||
| 15 | int which_main(int argc, char **argv); | 15 | int which_main(int argc, char **argv); |
| 16 | int which_main(int argc, char **argv) | 16 | int which_main(int argc, char **argv) |
