From b6adbf1be29841501cc49917249e85f273e1df7c Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 26 May 2007 19:00:18 +0000 Subject: usage.c: remove reference to busybox.h *: s/include "busybox.h"/include "libbb.h" --- console-tools/chvt.c | 2 +- console-tools/clear.c | 2 +- console-tools/deallocvt.c | 2 +- console-tools/dumpkmap.c | 2 +- console-tools/loadfont.c | 2 +- console-tools/loadkmap.c | 2 +- console-tools/openvt.c | 2 +- console-tools/reset.c | 2 +- console-tools/resize.c | 2 +- console-tools/setconsole.c | 2 +- console-tools/setkeycodes.c | 2 +- console-tools/setlogcons.c | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) (limited to 'console-tools') 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 */ 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 #include -#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 */ 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 */ 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 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 #include #include -#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 -#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 -#include "busybox.h" +#include "libbb.h" /* From */ 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) -- cgit v1.2.3