summaryrefslogtreecommitdiff
path: root/console-tools
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-25 21:45:58 +0000
committerEric Andersen <andersen@codepoet.org>2000-09-25 21:45:58 +0000
commit3570a34de46b1f7dedd16999bb1687e2d6b55d40 (patch)
tree7fa09f8a448d71c604288ec50a1777e657f57db5 /console-tools
parentcaffb6eff0e33a80da630963f21346c21186da39 (diff)
downloadbusybox-w32-3570a34de46b1f7dedd16999bb1687e2d6b55d40.tar.gz
busybox-w32-3570a34de46b1f7dedd16999bb1687e2d6b55d40.tar.bz2
busybox-w32-3570a34de46b1f7dedd16999bb1687e2d6b55d40.zip
Renamed "internal.h" to the more sensible "busybox.h".
-Erik
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/loadacm.c2
-rw-r--r--console-tools/loadfont.c2
-rw-r--r--console-tools/loadkmap.c2
-rw-r--r--console-tools/reset.c2
-rw-r--r--console-tools/setkeycodes.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/console-tools/chvt.c b/console-tools/chvt.c
index 87a1248fd..d4b16a05d 100644
--- a/console-tools/chvt.c
+++ b/console-tools/chvt.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * busyboxed by Erik Andersen 5 * busyboxed by Erik Andersen
6 */ 6 */
7#include "internal.h" 7#include "busybox.h"
8#include <stdio.h> 8#include <stdio.h>
9#include <stdlib.h> 9#include <stdlib.h>
10#include <fcntl.h> 10#include <fcntl.h>
diff --git a/console-tools/clear.c b/console-tools/clear.c
index dba105691..4a8e0450f 100644
--- a/console-tools/clear.c
+++ b/console-tools/clear.c
@@ -22,7 +22,7 @@
22 * 22 *
23 */ 23 */
24 24
25#include "internal.h" 25#include "busybox.h"
26#include <stdio.h> 26#include <stdio.h>
27 27
28 28
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c
index bb9632fde..65af79b77 100644
--- a/console-tools/deallocvt.c
+++ b/console-tools/deallocvt.c
@@ -3,7 +3,7 @@
3 * disalloc.c - aeb - 940501 - Disallocate virtual terminal(s) 3 * disalloc.c - aeb - 940501 - Disallocate virtual terminal(s)
4 * Renamed deallocvt. 4 * Renamed deallocvt.
5 */ 5 */
6#include "internal.h" 6#include "busybox.h"
7#include <stdlib.h> 7#include <stdlib.h>
8#include <stdio.h> 8#include <stdio.h>
9#include <fcntl.h> 9#include <fcntl.h>
diff --git a/console-tools/dumpkmap.c b/console-tools/dumpkmap.c
index 13b7d8937..2d989dfc4 100644
--- a/console-tools/dumpkmap.c
+++ b/console-tools/dumpkmap.c
@@ -20,7 +20,7 @@
20 * 20 *
21 */ 21 */
22 22
23#include "internal.h" 23#include "busybox.h"
24#include <errno.h> 24#include <errno.h>
25#include <fcntl.h> 25#include <fcntl.h>
26#include <stdio.h> 26#include <stdio.h>
diff --git a/console-tools/loadacm.c b/console-tools/loadacm.c
index 7f669bf08..826c2a33f 100644
--- a/console-tools/loadacm.c
+++ b/console-tools/loadacm.c
@@ -7,7 +7,7 @@
7 * Peter Novodvorsky <petya@logic.ru> 7 * Peter Novodvorsky <petya@logic.ru>
8 */ 8 */
9 9
10#include "internal.h" 10#include "busybox.h"
11#include <stdio.h> 11#include <stdio.h>
12#include <stdlib.h> 12#include <stdlib.h>
13#include <memory.h> 13#include <memory.h>
diff --git a/console-tools/loadfont.c b/console-tools/loadfont.c
index e93ca3186..d6eadc353 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 "internal.h" 10#include "busybox.h"
11#include <stdio.h> 11#include <stdio.h>
12#include <string.h> 12#include <string.h>
13#include <fcntl.h> 13#include <fcntl.h>
diff --git a/console-tools/loadkmap.c b/console-tools/loadkmap.c
index 2321a1ede..3f8d726e0 100644
--- a/console-tools/loadkmap.c
+++ b/console-tools/loadkmap.c
@@ -20,7 +20,7 @@
20 * 20 *
21 */ 21 */
22 22
23#include "internal.h" 23#include "busybox.h"
24#include <errno.h> 24#include <errno.h>
25#include <fcntl.h> 25#include <fcntl.h>
26#include <stdio.h> 26#include <stdio.h>
diff --git a/console-tools/reset.c b/console-tools/reset.c
index 6c4ae35ae..8e2c491e2 100644
--- a/console-tools/reset.c
+++ b/console-tools/reset.c
@@ -23,7 +23,7 @@
23 * 23 *
24 */ 24 */
25 25
26#include "internal.h" 26#include "busybox.h"
27#include <stdio.h> 27#include <stdio.h>
28 28
29extern int reset_main(int argc, char **argv) 29extern int reset_main(int argc, char **argv)
diff --git a/console-tools/setkeycodes.c b/console-tools/setkeycodes.c
index 284ffa194..63c106333 100644
--- a/console-tools/setkeycodes.c
+++ b/console-tools/setkeycodes.c
@@ -22,7 +22,7 @@
22 * 22 *
23 */ 23 */
24 24
25#include "internal.h" 25#include "busybox.h"
26#include <stdio.h> 26#include <stdio.h>
27#include <stdlib.h> 27#include <stdlib.h>
28#include <fcntl.h> 28#include <fcntl.h>