diff options
| author | gkostka <kostka.grzegorz@gmail.com> | 2017-04-05 20:12:52 +0200 |
|---|---|---|
| committer | gkostka <kostka.grzegorz@gmail.com> | 2017-04-05 20:12:52 +0200 |
| commit | 782631e9388c38ac509823df916ea494e271a931 (patch) | |
| tree | c1c3e06c58a89f107e17a5e1a36ba8429b58b558 /src/ext4_fs.c | |
| parent | 9ae6dcb7e063d495267e7a53ddecb4d8356645ba (diff) | |
Change include type policy
Since all headers are ins separate directory, includes could be
done by using <> instead of "".
Diffstat (limited to 'src/ext4_fs.c')
| -rw-r--r-- | src/ext4_fs.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/ext4_fs.c b/src/ext4_fs.c index 0e0ae15..42927c7 100644 --- a/src/ext4_fs.c +++ b/src/ext4_fs.c @@ -38,23 +38,23 @@ * @brief More complex filesystem functions. */ -#include "ext4_config.h" -#include "ext4_types.h" -#include "ext4_misc.h" -#include "ext4_errno.h" -#include "ext4_debug.h" - -#include "ext4_trans.h" -#include "ext4_fs.h" -#include "ext4_blockdev.h" -#include "ext4_super.h" -#include "ext4_crc32.h" -#include "ext4_block_group.h" -#include "ext4_balloc.h" -#include "ext4_bitmap.h" -#include "ext4_inode.h" -#include "ext4_ialloc.h" -#include "ext4_extent.h" +#include <ext4_config.h> +#include <ext4_types.h> +#include <ext4_misc.h> +#include <ext4_errno.h> +#include <ext4_debug.h> + +#include <ext4_trans.h> +#include <ext4_fs.h> +#include <ext4_blockdev.h> +#include <ext4_super.h> +#include <ext4_crc32.h> +#include <ext4_block_group.h> +#include <ext4_balloc.h> +#include <ext4_bitmap.h> +#include <ext4_inode.h> +#include <ext4_ialloc.h> +#include <ext4_extent.h> #include <string.h> |
