summaryrefslogtreecommitdiff
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-w32-b6adbf1be29841501cc49917249e85f273e1df7c.tar.gz
busybox-w32-b6adbf1be29841501cc49917249e85f273e1df7c.tar.bz2
busybox-w32-b6adbf1be29841501cc49917249e85f273e1df7c.zip
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 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include "busybox.h" 10#include "libbb.h"
11 11
12/* From <linux/vt.h> */ 12/* From <linux/vt.h> */
13enum { 13enum {
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 @@
12 12
13#include <stdio.h> 13#include <stdio.h>
14#include <stdlib.h> 14#include <stdlib.h>
15#include "busybox.h" 15#include "libbb.h"
16 16
17 17
18int clear_main(int argc, char **argv); 18int 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 @@
10 10
11/* no options, no getopt */ 11/* no options, no getopt */
12 12
13#include "busybox.h" 13#include "libbb.h"
14 14
15/* From <linux/vt.h> */ 15/* From <linux/vt.h> */
16enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */ 16enum { 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 @@
8 * 8 *
9 */ 9 */
10 10
11#include "busybox.h" 11#include "libbb.h"
12 12
13/* From <linux/kd.h> */ 13/* From <linux/kd.h> */
14struct kbentry { 14struct 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 @@
7 * Loads the console font, and possibly the corresponding screen map(s). 7 * Loads the console font, and possibly the corresponding screen map(s).
8 * (Adapted for busybox by Matej Vela.) 8 * (Adapted for busybox by Matej Vela.)
9 */ 9 */
10#include "busybox.h" 10#include "libbb.h"
11#include <sys/kd.h> 11#include <sys/kd.h>
12 12
13enum { 13enum {
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 @@
8 * 8 *
9 */ 9 */
10 10
11#include "busybox.h" 11#include "libbb.h"
12 12
13#define BINARY_KEYMAP_MAGIC "bkeymap" 13#define BINARY_KEYMAP_MAGIC "bkeymap"
14 14
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 @@
10 10
11/* getopt not needed */ 11/* getopt not needed */
12 12
13#include "busybox.h" 13#include "libbb.h"
14 14
15int openvt_main(int argc, char **argv); 15int openvt_main(int argc, char **argv);
16int openvt_main(int argc, char **argv) 16int 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 @@
13#include <stdio.h> 13#include <stdio.h>
14#include <stdlib.h> 14#include <stdlib.h>
15#include <unistd.h> 15#include <unistd.h>
16#include "busybox.h" 16#include "libbb.h"
17 17
18int reset_main(int argc, char **argv); 18int reset_main(int argc, char **argv);
19int reset_main(int argc, char **argv) 19int 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 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9/* no options, no getopt */ 9/* no options, no getopt */
10#include "busybox.h" 10#include "libbb.h"
11 11
12#define ESC "\033" 12#define ESC "\033"
13 13
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 @@
8 */ 8 */
9 9
10#include <getopt.h> 10#include <getopt.h>
11#include "busybox.h" 11#include "libbb.h"
12 12
13#if ENABLE_FEATURE_SETCONSOLE_LONG_OPTIONS 13#if ENABLE_FEATURE_SETCONSOLE_LONG_OPTIONS
14static const struct option setconsole_long_options[] = { 14static 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 @@
10 */ 10 */
11 11
12#include <sys/ioctl.h> 12#include <sys/ioctl.h>
13#include "busybox.h" 13#include "libbb.h"
14 14
15 15
16/* From <linux/kd.h> */ 16/* 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 @@
9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 9 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
10 */ 10 */
11 11
12#include "busybox.h" 12#include "libbb.h"
13 13
14int setlogcons_main(int argc, char **argv); 14int setlogcons_main(int argc, char **argv);
15int setlogcons_main(int argc, char **argv) 15int setlogcons_main(int argc, char **argv)