diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-26 19:00:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-26 19:00:18 +0000 |
commit | b6adbf1be29841501cc49917249e85f273e1df7c (patch) | |
tree | e28a5603e6009b2479e949b8b9b4aa0620fed400 /e2fsprogs | |
parent | 5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 (diff) | |
download | busybox-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 'e2fsprogs')
-rw-r--r-- | e2fsprogs/chattr.c | 2 | ||||
-rw-r--r-- | e2fsprogs/fsck.c | 2 | ||||
-rw-r--r-- | e2fsprogs/lsattr.c | 2 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/e2fsck.h | 2 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/e2p/e2p.h | 2 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/fsck.c | 2 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/tune2fs.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/e2fsprogs/chattr.c b/e2fsprogs/chattr.c index 82dba4adf..0ac03738c 100644 --- a/e2fsprogs/chattr.c +++ b/e2fsprogs/chattr.c | |||
@@ -19,7 +19,7 @@ | |||
19 | * 98/12/29 - Display version info only when -V specified (G M Sipe) | 19 | * 98/12/29 - Display version info only when -V specified (G M Sipe) |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include "busybox.h" | 22 | #include "libbb.h" |
23 | #include "e2fs_lib.h" | 23 | #include "e2fs_lib.h" |
24 | 24 | ||
25 | #define OPT_ADD 1 | 25 | #define OPT_ADD 1 |
diff --git a/e2fsprogs/fsck.c b/e2fsprogs/fsck.c index 446541e84..2954cabf3 100644 --- a/e2fsprogs/fsck.c +++ b/e2fsprogs/fsck.c | |||
@@ -37,7 +37,7 @@ | |||
37 | * It doesn't guess filesystem types from on-disk format. | 37 | * It doesn't guess filesystem types from on-disk format. |
38 | */ | 38 | */ |
39 | 39 | ||
40 | #include "busybox.h" | 40 | #include "libbb.h" |
41 | 41 | ||
42 | #define EXIT_OK 0 | 42 | #define EXIT_OK 0 |
43 | #define EXIT_NONDESTRUCT 1 | 43 | #define EXIT_NONDESTRUCT 1 |
diff --git a/e2fsprogs/lsattr.c b/e2fsprogs/lsattr.c index 25d2e3e48..fbfbea2bc 100644 --- a/e2fsprogs/lsattr.c +++ b/e2fsprogs/lsattr.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * 98/12/29 - Display version info only when -V specified (G M Sipe) | 18 | * 98/12/29 - Display version info only when -V specified (G M Sipe) |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include "busybox.h" | 21 | #include "libbb.h" |
22 | #include "e2fs_lib.h" | 22 | #include "e2fs_lib.h" |
23 | 23 | ||
24 | enum { | 24 | enum { |
diff --git a/e2fsprogs/old_e2fsprogs/e2fsck.h b/e2fsprogs/old_e2fsprogs/e2fsck.h index e520632a0..73d398ff4 100644 --- a/e2fsprogs/old_e2fsprogs/e2fsck.h +++ b/e2fsprogs/old_e2fsprogs/e2fsck.h | |||
@@ -39,7 +39,7 @@ | |||
39 | #include "blkid/blkid.h" | 39 | #include "blkid/blkid.h" |
40 | #include "ext2fs/ext2_ext_attr.h" | 40 | #include "ext2fs/ext2_ext_attr.h" |
41 | #include "uuid/uuid.h" | 41 | #include "uuid/uuid.h" |
42 | #include "busybox.h" | 42 | #include "libbb.h" |
43 | 43 | ||
44 | #ifdef HAVE_CONIO_H | 44 | #ifdef HAVE_CONIO_H |
45 | #undef HAVE_TERMIOS_H | 45 | #undef HAVE_TERMIOS_H |
diff --git a/e2fsprogs/old_e2fsprogs/e2p/e2p.h b/e2fsprogs/old_e2fsprogs/e2p/e2p.h index 2a2367b9f..cae28f115 100644 --- a/e2fsprogs/old_e2fsprogs/e2p/e2p.h +++ b/e2fsprogs/old_e2fsprogs/e2p/e2p.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | #include "busybox.h" | 2 | #include "libbb.h" |
3 | #include <sys/types.h> /* Needed by dirent.h on netbsd */ | 3 | #include <sys/types.h> /* Needed by dirent.h on netbsd */ |
4 | #include <stdio.h> | 4 | #include <stdio.h> |
5 | #include <dirent.h> | 5 | #include <dirent.h> |
diff --git a/e2fsprogs/old_e2fsprogs/fsck.c b/e2fsprogs/old_e2fsprogs/fsck.c index 7b794c3aa..0ad62ca04 100644 --- a/e2fsprogs/old_e2fsprogs/fsck.c +++ b/e2fsprogs/old_e2fsprogs/fsck.c | |||
@@ -46,7 +46,7 @@ | |||
46 | 46 | ||
47 | #include "e2fsbb.h" | 47 | #include "e2fsbb.h" |
48 | 48 | ||
49 | #include "busybox.h" | 49 | #include "libbb.h" |
50 | 50 | ||
51 | #ifndef _PATH_MNTTAB | 51 | #ifndef _PATH_MNTTAB |
52 | #define _PATH_MNTTAB "/etc/fstab" | 52 | #define _PATH_MNTTAB "/etc/fstab" |
diff --git a/e2fsprogs/old_e2fsprogs/tune2fs.c b/e2fsprogs/old_e2fsprogs/tune2fs.c index e5a93378d..920a50c6a 100644 --- a/e2fsprogs/old_e2fsprogs/tune2fs.c +++ b/e2fsprogs/old_e2fsprogs/tune2fs.c | |||
@@ -44,7 +44,7 @@ | |||
44 | #include "util.h" | 44 | #include "util.h" |
45 | #include "blkid/blkid.h" | 45 | #include "blkid/blkid.h" |
46 | 46 | ||
47 | #include "busybox.h" | 47 | #include "libbb.h" |
48 | 48 | ||
49 | static char * device_name = NULL; | 49 | static char * device_name = NULL; |
50 | static char * new_label, *new_last_mounted, *new_UUID; | 50 | static char * new_label, *new_last_mounted, *new_UUID; |