usage.c: remove reference to busybox.h
*: s/include "busybox.h"/include "libbb.h"
This commit is contained in:
@ -11,7 +11,7 @@
|
||||
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <sys/timex.h>
|
||||
|
||||
static const struct {int bit; const char *name;} statlist[] = {
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* vi: set sw=4 ts=4: */
|
||||
/* This file was released into the public domain by Paul Fox.
|
||||
*/
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include "bbconfigopts.h"
|
||||
|
||||
int bbconfig_main(int argc, char **argv);
|
||||
|
@ -6,10 +6,10 @@
|
||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include <unistd.h>
|
||||
#include <sched.h>
|
||||
#include <getopt.h> /* optind */
|
||||
#include "libbb.h"
|
||||
#ifndef _POSIX_PRIORITY_SCHEDULING
|
||||
#warning your system may be foobared
|
||||
#endif
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
#define VERSION "2.3.2"
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <sys/syslog.h>
|
||||
|
||||
#define arysize(ary) (sizeof(ary)/sizeof((ary)[0]))
|
||||
|
@ -10,7 +10,7 @@
|
||||
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
#ifndef CRONTABS
|
||||
#define CRONTABS "/var/spool/cron/crontabs"
|
||||
|
@ -3,7 +3,7 @@
|
||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <math.h>
|
||||
|
||||
/* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */
|
||||
|
@ -54,7 +54,7 @@
|
||||
Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include "xregex.h"
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
|
@ -13,7 +13,7 @@
|
||||
* Most of the dirty work blatantly ripped off from cat.c =)
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
/* various defines swiped from linux/cdrom.h */
|
||||
#define CDROMCLOSETRAY 0x5319 /* pendant of CDROMEJECT */
|
||||
|
@ -12,7 +12,7 @@
|
||||
* - by Mark Lord (C) 1994-2002 -- freely distributable
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <linux/hdreg.h>
|
||||
|
||||
/* device types */
|
||||
|
@ -7,7 +7,7 @@
|
||||
* Licensed under the GPL version 2, see the file LICENSE in this tarball.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <utmp.h>
|
||||
|
||||
#ifndef SHUTDOWN_TIME
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
#include <sched.h> /* sched_yield() */
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#if ENABLE_FEATURE_LESS_REGEXP
|
||||
#include "xregex.h"
|
||||
#endif
|
||||
|
@ -7,7 +7,7 @@
|
||||
* known bugs: can't deal with alpha ranges
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
#ifdef CONFIG_FEATURE_MAKEDEVS_LEAF
|
||||
int makedevs_main(int argc, char **argv);
|
||||
|
@ -9,7 +9,7 @@
|
||||
* Based on sysvinit's mountpoint
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
int mountpoint_main(int argc, char **argv);
|
||||
int mountpoint_main(int argc, char **argv)
|
||||
|
@ -3,7 +3,7 @@
|
||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <sys/mtio.h>
|
||||
|
||||
struct mt_opcodes {
|
||||
|
@ -12,7 +12,7 @@
|
||||
// disk_io: (3,0):(22272,17897,410702,4375,54750)
|
||||
// btime 1059401962
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <time.h>
|
||||
|
||||
typedef unsigned long long ullong;
|
||||
|
@ -8,7 +8,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
#include <linux/major.h>
|
||||
#include <linux/raid/md_u.h>
|
||||
|
@ -10,7 +10,7 @@
|
||||
* Licensed under GPLv2 or later, see file License in this tarball for details.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
int readahead_main(int argc, char **argv);
|
||||
int readahead_main(int argc, char **argv)
|
||||
|
@ -12,7 +12,7 @@
|
||||
* initially busyboxified by Bernhard Fischer
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
#include <stdio.h>
|
||||
#include <utmp.h>
|
||||
#include <time.h>
|
||||
|
@ -19,7 +19,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
#define SOH 0x01
|
||||
#define STX 0x02
|
||||
|
@ -14,7 +14,7 @@
|
||||
* - busyboxed
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
int setsid_main(int argc, char **argv);
|
||||
int setsid_main(int argc, char **argv)
|
||||
|
@ -7,11 +7,9 @@
|
||||
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <getopt.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "libbb.h"
|
||||
|
||||
#define WHOLE_FILE 1
|
||||
#define PRINT_NAME 2
|
||||
|
@ -6,9 +6,9 @@
|
||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include <sched.h>
|
||||
#include <getopt.h> /* optind */
|
||||
#include "libbb.h"
|
||||
|
||||
#if ENABLE_FEATURE_TASKSET_FANCY
|
||||
#define TASKSET_PRINTF_MASK "%s"
|
||||
|
@ -9,7 +9,7 @@
|
||||
Heavily modified for busybox by Erik Andersen <andersen@codepoet.org>
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
#define TV_MSEC tv_usec / 1000
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
||||
*/
|
||||
|
||||
#include "busybox.h"
|
||||
#include "libbb.h"
|
||||
|
||||
#define OPT_FOREGROUND 0x01
|
||||
#define OPT_TIMER 0x02
|
||||
|
Reference in New Issue
Block a user