usage.c: remove reference to busybox.h

*: s/include "busybox.h"/include "libbb.h"
This commit is contained in:
Denis Vlasenko
2007-05-26 19:00:18 +00:00
parent 5a6aeddfa7
commit b6adbf1be2
251 changed files with 270 additions and 269 deletions

View File

@ -9,7 +9,7 @@
* Licensed under GPLv2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
#include <unistd.h>
#include <sys/klog.h>

View File

@ -12,7 +12,7 @@
* Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be)
*/
#include "busybox.h"
#include "libbb.h"
#define DEFAULTFBDEV FB_0
#define DEFAULTFBMODE "/etc/fb.modes"

View File

@ -9,7 +9,7 @@
* 5 July 2003 -- modified for Busybox by Erik Andersen
*/
#include "busybox.h"
#include "libbb.h"
/* Stuff extracted from linux/fd.h */

View File

@ -8,7 +8,7 @@
*/
#include <assert.h> /* assert */
#include "busybox.h"
#include "libbb.h"
/* Looks like someone forgot to add this to config system */
#ifndef ENABLE_FEATURE_FDISK_BLKSIZE

View File

@ -9,7 +9,7 @@
* Licensed under GPLv2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
/* From <linux/fd.h> */
#define FDFLUSH _IO(2,0x4b)

View File

@ -87,7 +87,7 @@
* enforced (but it's not much fun on a character device :-).
*/
#include "busybox.h"
#include "libbb.h"
#include <mntent.h>
#include "minix.h"

View File

@ -31,8 +31,8 @@
*
*/
#include "busybox.h"
#include <getopt.h>
#include "libbb.h"
/* NON_OPT is the code that is returned when a non-option is found in '+'
mode */

View File

@ -10,7 +10,7 @@
*/
#include <getopt.h>
#include "busybox.h"
#include "libbb.h"
#include "dump.h"
/* This is a NOEXEC applet. Be very careful! */

View File

@ -11,7 +11,7 @@
#include <sys/ioctl.h>
#include <sys/utsname.h>
#include <getopt.h>
#include "busybox.h"
#include "libbb.h"
/* Copied from linux/rtc.h to eliminate the kernel dependency */
struct linux_rtc_time {

View File

@ -8,7 +8,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
/* X/OPEN tells us to use <sys/{types,ipc,sem}.h> for semctl() */
/* X/OPEN tells us to use <sys/{types,ipc,msg}.h> for msgctl() */

View File

@ -8,7 +8,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
#include <errno.h>
#include <time.h>
#include <pwd.h>

View File

@ -8,9 +8,8 @@
*/
#include <getopt.h>
#include <stdlib.h>
#include "busybox.h"
#include "libbb.h"
int losetup_main(int argc, char **argv);
int losetup_main(int argc, char **argv)

View File

@ -9,7 +9,7 @@
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
#include "xregex.h"
#define DEV_PATH "/dev"

View File

@ -62,7 +62,7 @@
* removed getopt based parser and added a hand rolled one.
*/
#include "busybox.h"
#include "libbb.h"
#include <mntent.h>
#include "minix.h"

View File

@ -6,7 +6,7 @@
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
int mkswap_main(int argc, char **argv);
int mkswap_main(int argc, char **argv)

View File

@ -14,7 +14,7 @@
* Licensed under GPLv2 or later, see file License in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
#if ENABLE_FEATURE_USE_TERMIOS

View File

@ -18,7 +18,7 @@
mount_it_now() does the actual mount.
*/
#include "busybox.h"
#include "libbb.h"
#include <mntent.h>
/* Needed for nfs support only... */

View File

@ -8,7 +8,7 @@
*
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
extern int pivot_root(const char * new_root,const char * put_old);

View File

@ -8,7 +8,7 @@
* Licensed under GPL v2 or later, see file License for details.
*/
#include "busybox.h"
#include "libbb.h"
enum { RFC_868_BIAS = 2208988800UL };

View File

@ -32,7 +32,7 @@
* Paul Mundt <lethal@linux-sh.org>.
*/
#include "busybox.h"
#include "libbb.h"
#include <sys/utsname.h>
#define S_LEN 128

View File

@ -14,7 +14,7 @@
#include <stdio.h>
#include <sys/personality.h>
#include "busybox.h"
#include "libbb.h"
int setarch_main(int ATTRIBUTE_UNUSED argc, char **argv);
int setarch_main(int ATTRIBUTE_UNUSED argc, char **argv)

View File

@ -7,7 +7,7 @@
* Licensed under the GPL version 2, see the file LICENSE in this tarball.
*/
#include "busybox.h"
#include "libbb.h"
#include <mntent.h>
#include <sys/swap.h>

View File

@ -6,7 +6,7 @@
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
#include <sys/vfs.h>

View File

@ -8,9 +8,9 @@
* Licensed under GPL version 2, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include <mntent.h>
#include <getopt.h>
#include "libbb.h"
#define OPTION_STRING "flDnravdt:"
#define OPT_FORCE 1