diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-05-26 19:00:18 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-05-26 19:00:18 +0000 |
commit | d0a3ee609344cfbc050b7a5aa39ad72fd68a939a (patch) | |
tree | e28a5603e6009b2479e949b8b9b4aa0620fed400 /libbb | |
parent | caf6acaea106e3af96450e7e8260b530f11055f6 (diff) | |
download | busybox-w32-d0a3ee609344cfbc050b7a5aa39ad72fd68a939a.tar.gz busybox-w32-d0a3ee609344cfbc050b7a5aa39ad72fd68a939a.tar.bz2 busybox-w32-d0a3ee609344cfbc050b7a5aa39ad72fd68a939a.zip |
usage.c: remove reference to busybox.h
*: s/include "busybox.h"/include "libbb.h"
git-svn-id: svn://busybox.net/trunk/busybox@18696 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/getopt32.c | 2 | ||||
-rw-r--r-- | libbb/lineedit.c | 2 | ||||
-rw-r--r-- | libbb/selinux_common.c | 2 | ||||
-rw-r--r-- | libbb/xfuncs.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libbb/getopt32.c b/libbb/getopt32.c index 382d28a4e..d4465f899 100644 --- a/libbb/getopt32.c +++ b/libbb/getopt32.c | |||
@@ -7,8 +7,8 @@ | |||
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 "libbb.h" | ||
11 | #include <getopt.h> | 10 | #include <getopt.h> |
11 | #include "libbb.h" | ||
12 | 12 | ||
13 | /* Documentation | 13 | /* Documentation |
14 | 14 | ||
diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 3cb9c3e28..9bbc7097d 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c | |||
@@ -29,7 +29,7 @@ | |||
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <sys/ioctl.h> | 31 | #include <sys/ioctl.h> |
32 | #include "busybox.h" | 32 | #include "libbb.h" |
33 | 33 | ||
34 | 34 | ||
35 | /* FIXME: obsolete CONFIG item? */ | 35 | /* FIXME: obsolete CONFIG item? */ |
diff --git a/libbb/selinux_common.c b/libbb/selinux_common.c index 4cb85f00f..ff076f6f0 100644 --- a/libbb/selinux_common.c +++ b/libbb/selinux_common.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright 2007 KaiGai Kohei <kaigai@kaigai.gr.jp> | 5 | * Copyright 2007 KaiGai Kohei <kaigai@kaigai.gr.jp> |
6 | */ | 6 | */ |
7 | #include "busybox.h" | 7 | #include "libbb.h" |
8 | #include <selinux/context.h> | 8 | #include <selinux/context.h> |
9 | 9 | ||
10 | context_t set_security_context_component(security_context_t cur_context, | 10 | context_t set_security_context_component(security_context_t cur_context, |
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 4eb4737c0..d02ef9c77 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -9,7 +9,7 @@ | |||
9 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. | 9 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include "busybox.h" | 12 | #include "libbb.h" |
13 | 13 | ||
14 | /* All the functions starting with "x" call bb_error_msg_and_die() if they | 14 | /* All the functions starting with "x" call bb_error_msg_and_die() if they |
15 | * fail, so callers never need to check for errors. If it returned, it | 15 | * fail, so callers never need to check for errors. If it returned, it |