diff options
author | Theodore Ts'o <tytso@mit.edu> | 2001-05-21 02:54:21 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2001-05-21 02:54:21 +0000 |
commit | 7c2d25699f2da458ba8201a375b00562d7a2469e (patch) | |
tree | 46f60ff3226b0262c45d7047b71bff966b729fc7 /lib | |
parent | 1893e7133190994b173bdb560d5bd14425c9d49c (diff) | |
download | e2fsprogs-7c2d25699f2da458ba8201a375b00562d7a2469e.tar.gz |
ChangeLog, ext2fs.h:
ext2fs.h: #include <> instead of "" for ext2fs and et header files,
since they will be installed in /usr/include
ChangeLog, e2p.h:
e2p.h: #include <> instead of "" for ext2fs and et header files, since
they will be installed in /usr/include
Diffstat (limited to 'lib')
-rw-r--r-- | lib/e2p/ChangeLog | 5 | ||||
-rw-r--r-- | lib/e2p/e2p.h | 2 | ||||
-rw-r--r-- | lib/ext2fs/ChangeLog | 5 | ||||
-rw-r--r-- | lib/ext2fs/ext2fs.h | 8 |
4 files changed, 15 insertions, 5 deletions
diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog index 1a7f0c2e..16ee29b0 100644 --- a/lib/e2p/ChangeLog +++ b/lib/e2p/ChangeLog @@ -1,3 +1,8 @@ +2001-05-20 Theodore Tso <tytso@valinux.com> + + * e2p.h: #include <> instead of "" for ext2fs and et header files, + since they will be installed in /usr/include + 2001-05-14 Theodore Tso <tytso@valinux.com> * e2p.h: Change location of ext2_fs.h to be ext2fs/ext2_fs.h diff --git a/lib/e2p/e2p.h b/lib/e2p/e2p.h index 3d27479e..9ea24bfb 100644 --- a/lib/e2p/e2p.h +++ b/lib/e2p/e2p.h @@ -2,7 +2,7 @@ #include <stdio.h> #include <dirent.h> -#include "ext2fs/ext2_fs.h" +#include <ext2fs/ext2_fs.h> #define E2P_FEATURE_COMPAT 0 #define E2P_FEATURE_INCOMPAT 1 diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index 4136b974..381a7e42 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,8 @@ +2001-05-20 Theodore Tso <tytso@valinux.com> + + * ext2fs.h: #include <> instead of "" for ext2fs and et header + files, since they will be installed in /usr/include + 2001-05-14 Theodore Tso <tytso@valinux.com> * alloc.c, alloc_tables.c, badblocks.c, bb_compat.c, bb_inode.c, diff --git a/lib/ext2fs/ext2fs.h b/lib/ext2fs/ext2fs.h index f1a5e22b..762b7eb8 100644 --- a/lib/ext2fs/ext2fs.h +++ b/lib/ext2fs/ext2fs.h @@ -72,9 +72,9 @@ typedef __s64 e2_blkcnt_t; #include "ext2_io.h" #include "ext2_err.h" #else -#include "et/com_err.h" -#include "ext2fs/ext2_io.h" -#include "ext2fs/ext2_err.h" +#include <et/com_err.h> +#include <ext2fs/ext2_io.h> +#include <ext2fs/ext2_err.h> #endif /* @@ -234,7 +234,7 @@ struct struct_ext2_filsys { #if EXT2_FLAT_INCLUDES #include "e2_bitops.h" #else -#include "ext2fs/bitops.h" +#include <ext2fs/bitops.h> #endif /* |