diff options
author | "Vladimir N. Oleynik" | 2005-10-10 11:35:17 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" | 2005-10-10 11:35:17 +0000 |
commit | 083d3f49c2c0fec0bd8b5b0bec875d67748c612e (patch) | |
tree | bb326553f70f3bebe7ff3ed3cf1d57dcc8a5e8ab /e2fsprogs/ext2fs/ext2fs.h | |
parent | ff9f2f6fbae538d27197e7e357da187031ef33df (diff) | |
download | busybox-083d3f49c2c0fec0bd8b5b0bec875d67748c612e.zip busybox-083d3f49c2c0fec0bd8b5b0bec875d67748c612e.tar.gz |
bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3.
e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only.
other: remove confuse bb_mkdep.
Diffstat (limited to 'e2fsprogs/ext2fs/ext2fs.h')
-rw-r--r-- | e2fsprogs/ext2fs/ext2fs.h | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/e2fsprogs/ext2fs/ext2fs.h b/e2fsprogs/ext2fs/ext2fs.h index bad2f9e..eda9622 100644 --- a/e2fsprogs/ext2fs/ext2fs.h +++ b/e2fsprogs/ext2fs/ext2fs.h @@ -61,13 +61,8 @@ extern "C" { #include <stdio.h> #include <stdlib.h> -#if EXT2_FLAT_INCLUDES -#include "e2_types.h" +#include "ext2_types.h" #include "ext2_fs.h" -#else -#include <ext2fs/ext2_types.h> -#include <ext2fs/ext2_fs.h> -#endif /* EXT2_FLAT_INCLUDES */ typedef __u32 ext2_ino_t; typedef __u32 blk_t; @@ -76,13 +71,8 @@ typedef __u32 ext2_off_t; typedef __s64 e2_blkcnt_t; typedef __u32 ext2_dirhash_t; -#if EXT2_FLAT_INCLUDES #include "ext2_io.h" #include "ext2_err.h" -#else -#include <ext2fs/ext2_io.h> -#include <ext2fs/ext2_err.h> -#endif /* * Portability help for Microsoft Visual C++ @@ -243,11 +233,7 @@ struct struct_ext2_filsys { io_channel image_io; }; -#if EXT2_FLAT_INCLUDES -#include "e2_bitops.h" -#else -#include <ext2fs/bitops.h> -#endif +#include "bitops.h" /* * Return flags for the block iterator functions |