aboutsummaryrefslogtreecommitdiff
path: root/util-linux
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 /util-linux
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 'util-linux')
-rw-r--r--util-linux/dmesg.c2
-rw-r--r--util-linux/fbset.c2
-rw-r--r--util-linux/fdflush.c2
-rw-r--r--util-linux/freeramdisk.c2
-rw-r--r--util-linux/fsck_minix.c2
-rw-r--r--util-linux/getopt.c2
-rw-r--r--util-linux/mkfs_minix.c2
-rw-r--r--util-linux/mkswap.c2
-rw-r--r--util-linux/more.c2
-rw-r--r--util-linux/mount.c2
-rw-r--r--util-linux/nfsmount.c2
-rw-r--r--util-linux/rdate.c2
-rw-r--r--util-linux/swaponoff.c2
-rw-r--r--util-linux/umount.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/util-linux/dmesg.c b/util-linux/dmesg.c
index 99d053a72..88b5d1393 100644
--- a/util-linux/dmesg.c
+++ b/util-linux/dmesg.c
@@ -15,7 +15,7 @@
15 * Support, replaced getopt, added some gotos for redundant stuff. 15 * Support, replaced getopt, added some gotos for redundant stuff.
16 */ 16 */
17 17
18#include "internal.h" 18#include "busybox.h"
19#include <stdio.h> 19#include <stdio.h>
20#include <stdlib.h> 20#include <stdlib.h>
21 21
diff --git a/util-linux/fbset.c b/util-linux/fbset.c
index 235338c55..32325a7cf 100644
--- a/util-linux/fbset.c
+++ b/util-linux/fbset.c
@@ -24,7 +24,7 @@
24 * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be) 24 * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be)
25 */ 25 */
26 26
27#include "internal.h" 27#include "busybox.h"
28#include <stdio.h> 28#include <stdio.h>
29#include <stdlib.h> 29#include <stdlib.h>
30#include <unistd.h> 30#include <unistd.h>
diff --git a/util-linux/fdflush.c b/util-linux/fdflush.c
index 6bc3e7d66..6633e1212 100644
--- a/util-linux/fdflush.c
+++ b/util-linux/fdflush.c
@@ -21,7 +21,7 @@
21 * 21 *
22 */ 22 */
23 23
24#include "internal.h" 24#include "busybox.h"
25#include <stdio.h> 25#include <stdio.h>
26#include <sys/ioctl.h> 26#include <sys/ioctl.h>
27#include <fcntl.h> 27#include <fcntl.h>
diff --git a/util-linux/freeramdisk.c b/util-linux/freeramdisk.c
index 64915b313..22fc3e643 100644
--- a/util-linux/freeramdisk.c
+++ b/util-linux/freeramdisk.c
@@ -27,7 +27,7 @@
27#include <fcntl.h> 27#include <fcntl.h>
28#include <sys/ioctl.h> 28#include <sys/ioctl.h>
29#include <errno.h> 29#include <errno.h>
30#include "internal.h" 30#include "busybox.h"
31 31
32 32
33/* From linux/fs.h */ 33/* From linux/fs.h */
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c
index 04c2b3317..ef65e3073 100644
--- a/util-linux/fsck_minix.c
+++ b/util-linux/fsck_minix.c
@@ -86,7 +86,7 @@
86 * enforced (but it's not much fun on a character device :-). 86 * enforced (but it's not much fun on a character device :-).
87 */ 87 */
88 88
89#include "internal.h" 89#include "busybox.h"
90#include <stdio.h> 90#include <stdio.h>
91#include <errno.h> 91#include <errno.h>
92#include <unistd.h> 92#include <unistd.h>
diff --git a/util-linux/getopt.c b/util-linux/getopt.c
index fb75790d9..919ae6c68 100644
--- a/util-linux/getopt.c
+++ b/util-linux/getopt.c
@@ -49,7 +49,7 @@
49#include <ctype.h> 49#include <ctype.h>
50#include <getopt.h> 50#include <getopt.h>
51 51
52#include "internal.h" 52#include "busybox.h"
53 53
54/* NON_OPT is the code that is returned when a non-option is found in '+' 54/* NON_OPT is the code that is returned when a non-option is found in '+'
55 mode */ 55 mode */
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c
index fafcc230e..15cf531f0 100644
--- a/util-linux/mkfs_minix.c
+++ b/util-linux/mkfs_minix.c
@@ -62,7 +62,7 @@
62 * removed getopt based parser and added a hand rolled one. 62 * removed getopt based parser and added a hand rolled one.
63 */ 63 */
64 64
65#include "internal.h" 65#include "busybox.h"
66#include <stdio.h> 66#include <stdio.h>
67#include <time.h> 67#include <time.h>
68#include <unistd.h> 68#include <unistd.h>
diff --git a/util-linux/mkswap.c b/util-linux/mkswap.c
index 70028dc2e..8a9767cca 100644
--- a/util-linux/mkswap.c
+++ b/util-linux/mkswap.c
@@ -35,7 +35,7 @@
35 * 35 *
36 */ 36 */
37 37
38#include "internal.h" 38#include "busybox.h"
39#include <stdio.h> 39#include <stdio.h>
40#include <unistd.h> 40#include <unistd.h>
41#include <string.h> 41#include <string.h>
diff --git a/util-linux/more.c b/util-linux/more.c
index 45b7c1274..caabc44e2 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -25,7 +25,7 @@
25 * 25 *
26 */ 26 */
27 27
28#include "internal.h" 28#include "busybox.h"
29#include <stdio.h> 29#include <stdio.h>
30#include <fcntl.h> 30#include <fcntl.h>
31#include <signal.h> 31#include <signal.h>
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 598b650f9..8b115c9f5 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -43,7 +43,7 @@
43 * 43 *
44 */ 44 */
45 45
46#include "internal.h" 46#include "busybox.h"
47#include <stdlib.h> 47#include <stdlib.h>
48#include <unistd.h> 48#include <unistd.h>
49#include <errno.h> 49#include <errno.h>
diff --git a/util-linux/nfsmount.c b/util-linux/nfsmount.c
index 628772b1b..abae19afe 100644
--- a/util-linux/nfsmount.c
+++ b/util-linux/nfsmount.c
@@ -33,7 +33,7 @@
33 * nfsmount.c,v 1.1.1.1 1993/11/18 08:40:51 jrs Exp 33 * nfsmount.c,v 1.1.1.1 1993/11/18 08:40:51 jrs Exp
34 */ 34 */
35 35
36#include "internal.h" 36#include "busybox.h"
37#undef FALSE 37#undef FALSE
38#undef TRUE 38#undef TRUE
39#include <unistd.h> 39#include <unistd.h>
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 20536d24b..915c4bdd4 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -21,7 +21,7 @@
21 * 21 *
22*/ 22*/
23 23
24#include "internal.h" 24#include "busybox.h"
25#define BB_DECLARE_EXTERN 25#define BB_DECLARE_EXTERN
26#include "messages.c" 26#include "messages.c"
27#include <sys/time.h> 27#include <sys/time.h>
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c
index 6aafe51a2..4a1c8f93f 100644
--- a/util-linux/swaponoff.c
+++ b/util-linux/swaponoff.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 <sys/mount.h> 27#include <sys/mount.h>
28#include <mntent.h> 28#include <mntent.h>
diff --git a/util-linux/umount.c b/util-linux/umount.c
index 6a5e4cad8..1d9c6bb32 100644
--- a/util-linux/umount.c
+++ b/util-linux/umount.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 <mntent.h> 27#include <mntent.h>
28#include <errno.h> 28#include <errno.h>