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 /libbb | |
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 '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 382d28a..d4465f8 100644 --- a/libbb/getopt32.c +++ b/libbb/getopt32.c @@ -7,8 +7,8 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include "libbb.h" #include <getopt.h> +#include "libbb.h" /* Documentation diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 3cb9c3e..9bbc709 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -29,7 +29,7 @@ */ #include <sys/ioctl.h> -#include "busybox.h" +#include "libbb.h" /* FIXME: obsolete CONFIG item? */ diff --git a/libbb/selinux_common.c b/libbb/selinux_common.c index 4cb85f0..ff076f6 100644 --- a/libbb/selinux_common.c +++ b/libbb/selinux_common.c @@ -4,7 +4,7 @@ * * Copyright 2007 KaiGai Kohei <kaigai@kaigai.gr.jp> */ -#include "busybox.h" +#include "libbb.h" #include <selinux/context.h> context_t set_security_context_component(security_context_t cur_context, diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 4eb4737..d02ef9c 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -9,7 +9,7 @@ * Licensed under GPL version 2, see file LICENSE in this tarball for details. */ -#include "busybox.h" +#include "libbb.h" /* All the functions starting with "x" call bb_error_msg_and_die() if they * fail, so callers never need to check for errors. If it returned, it |