aboutsummaryrefslogtreecommitdiff
path: root/console-tools
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-26 19:00:18 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-26 19:00:18 +0000
commitb6adbf1be29841501cc49917249e85f273e1df7c (patch)
treee28a5603e6009b2479e949b8b9b4aa0620fed400 /console-tools
parent5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 (diff)
downloadbusybox-b6adbf1be29841501cc49917249e85f273e1df7c.tar.gz
usage.c: remove reference to busybox.h
*: s/include "busybox.h"/include "libbb.h"
Diffstat (limited to 'console-tools')
-rw-r--r--console-tools/chvt.c2
-rw-r--r--console-tools/clear.c2
-rw-r--r--console-tools/deallocvt.c2
-rw-r--r--console-tools/dumpkmap.c2
-rw-r--r--console-tools/loadfont.c2
-rw-r--r--console-tools/loadkmap.c2
-rw-r--r--console-tools/openvt.c2
-rw-r--r--console-tools/reset.c2
-rw-r--r--console-tools/resize.c2
-rw-r--r--console-tools/setconsole.c2
-rw-r--r--console-tools/setkeycodes.c2
-rw-r--r--console-tools/setlogcons.c2
12 files changed, 12 insertions, 12 deletions
diff --git a/console-tools/chvt.c b/console-tools/chvt.c
index 50908115c..e8761d523 100644
--- a/console-tools/chvt.c
+++ b/console-tools/chvt.c
@@ -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 {
diff --git a/console-tools/clear.c b/console-tools/clear.c
index 8e34d6d9a..053293ce2 100644
--- a/console-tools/clear.c
+++ b/console-tools/clear.c
@@ -12,7 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include "busybox.h"
+#include "libbb.h"
int clear_main(int argc, char **argv);
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c
index 476eefa51..db52747ad 100644
--- a/console-tools/deallocvt.c
+++ b/console-tools/deallocvt.c
@@ -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 */
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c
index 0c1914830..f61795cf0 100644
--- a/console-tools/dumpkmap.c
+++ b/console-tools/dumpkmap.c
@@ -8,7 +8,7 @@
*
*/
-#include "busybox.h"
+#include "libbb.h"
/* From <linux/kd.h> */
struct kbentry {
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c
index f691b11af..88d7a0401 100644
--- a/console-tools/loadfont.c
+++ b/console-tools/loadfont.c
@@ -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 {
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c
index a141435e2..4a726f9c8 100644
--- a/console-tools/loadkmap.c
+++ b/console-tools/loadkmap.c
@@ -8,7 +8,7 @@
*
*/
-#include "busybox.h"
+#include "libbb.h"
#define BINARY_KEYMAP_MAGIC "bkeymap"
diff --git a/console-tools/openvt.c b/console-tools/openvt.c
index 882563b29..c050ba19e 100644
--- a/console-tools/openvt.c
+++ b/console-tools/openvt.c
@@ -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)
diff --git a/console-tools/reset.c b/console-tools/reset.c
index 03b078c5d..c844e1511 100644
--- a/console-tools/reset.c
+++ b/console-tools/reset.c
@@ -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)
diff --git a/console-tools/resize.c b/console-tools/resize.c
index 64f318c76..52fdb26f4 100644
--- a/console-tools/resize.c
+++ b/console-tools/resize.c
@@ -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"
diff --git a/console-tools/setconsole.c b/console-tools/setconsole.c
index 31ee1fc63..f437415db 100644
--- a/console-tools/setconsole.c
+++ b/console-tools/setconsole.c
@@ -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[] = {
diff --git a/console-tools/setkeycodes.c b/console-tools/setkeycodes.c
index ff137d562..a0d291d30 100644
--- a/console-tools/setkeycodes.c
+++ b/console-tools/setkeycodes.c
@@ -10,7 +10,7 @@
*/
#include <sys/ioctl.h>
-#include "busybox.h"
+#include "libbb.h"
/* From <linux/kd.h> */
diff --git a/console-tools/setlogcons.c b/console-tools/setlogcons.c
index 7b5addca7..f95a65390 100644
--- a/console-tools/setlogcons.c
+++ b/console-tools/setlogcons.c
@@ -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)