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

@@ -7,7 +7,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
/* From <linux/vt.h> */
enum {

View File

@@ -12,7 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
#include "busybox.h"
#include "libbb.h"
int clear_main(int argc, char **argv);

View File

@@ -10,7 +10,7 @@
/* no options, no getopt */
#include "busybox.h"
#include "libbb.h"
/* From <linux/vt.h> */
enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */

View File

@@ -8,7 +8,7 @@
*
*/
#include "busybox.h"
#include "libbb.h"
/* From <linux/kd.h> */
struct kbentry {

View File

@@ -7,7 +7,7 @@
* Loads the console font, and possibly the corresponding screen map(s).
* (Adapted for busybox by Matej Vela.)
*/
#include "busybox.h"
#include "libbb.h"
#include <sys/kd.h>
enum {

View File

@@ -8,7 +8,7 @@
*
*/
#include "busybox.h"
#include "libbb.h"
#define BINARY_KEYMAP_MAGIC "bkeymap"

View File

@@ -10,7 +10,7 @@
/* getopt not needed */
#include "busybox.h"
#include "libbb.h"
int openvt_main(int argc, char **argv);
int openvt_main(int argc, char **argv)

View File

@@ -13,7 +13,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "busybox.h"
#include "libbb.h"
int reset_main(int argc, char **argv);
int reset_main(int argc, char **argv)

View File

@@ -7,7 +7,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
/* no options, no getopt */
#include "busybox.h"
#include "libbb.h"
#define ESC "\033"

View File

@@ -8,7 +8,7 @@
*/
#include <getopt.h>
#include "busybox.h"
#include "libbb.h"
#if ENABLE_FEATURE_SETCONSOLE_LONG_OPTIONS
static const struct option setconsole_long_options[] = {

View File

@@ -10,7 +10,7 @@
*/
#include <sys/ioctl.h>
#include "busybox.h"
#include "libbb.h"
/* From <linux/kd.h> */

View File

@@ -9,7 +9,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
int setlogcons_main(int argc, char **argv);
int setlogcons_main(int argc, char **argv)