shithub: lwext4

Download patch

ref: 782631e9388c38ac509823df916ea494e271a931
parent: 9ae6dcb7e063d495267e7a53ddecb4d8356645ba
author: gkostka <kostka.grzegorz@gmail.com>
date: Wed Apr 5 16:12:52 EDT 2017

Change include type policy

Since all headers are ins separate directory, includes could be
done by using <> instead of "".

--- a/include/ext4.h
+++ b/include/ext4.h
@@ -45,13 +45,13 @@
 #include <stdint.h>
 #include <stddef.h>
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_errno.h"
-#include "ext4_oflags.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_errno.h>
+#include <ext4_oflags.h>
+#include <ext4_debug.h>
 
-#include "ext4_blockdev.h"
+#include <ext4_blockdev.h>
 
 /********************************OS LOCK INFERFACE***************************/
 
--- a/include/ext4_balloc.h
+++ b/include/ext4_balloc.h
@@ -45,10 +45,10 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
 
-#include "ext4_fs.h"
+#include <ext4_fs.h>
 
 #include <stdint.h>
 #include <stdbool.h>
--- a/include/ext4_bcache.h
+++ b/include/ext4_bcache.h
@@ -41,12 +41,12 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
+#include <ext4_config.h>
 
 #include <stdint.h>
 #include <stdbool.h>
-#include "misc/tree.h"
-#include "misc/queue.h"
+#include <misc/tree.h>
+#include <misc/queue.h>
 
 #define EXT4_BLOCK_ZERO() 	\
 	{.lb_id = 0, .data = 0}
--- a/include/ext4_bitmap.h
+++ b/include/ext4_bitmap.h
@@ -41,7 +41,7 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
+#include <ext4_config.h>
 
 #include <stdint.h>
 #include <stdbool.h>
--- a/include/ext4_block_group.h
+++ b/include/ext4_block_group.h
@@ -46,9 +46,9 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_super.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_super.h>
 
 #include <stdint.h>
 #include <stdbool.h>
--- a/include/ext4_blockdev.h
+++ b/include/ext4_blockdev.h
@@ -40,8 +40,8 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_bcache.h"
+#include <ext4_config.h>
+#include <ext4_bcache.h>
 
 #include <stdbool.h>
 #include <stdint.h>
--- a/include/ext4_crc32.h
+++ b/include/ext4_crc32.h
@@ -43,7 +43,7 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
+#include <ext4_config.h>
 
 #include <stdint.h>
 
--- a/include/ext4_debug.h
+++ b/include/ext4_debug.h
@@ -41,8 +41,8 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_errno.h"
+#include <ext4_config.h>
+#include <ext4_errno.h>
 
 #if !CONFIG_HAVE_OWN_ASSERT
 #include <assert.h>
--- a/include/ext4_dir.h
+++ b/include/ext4_dir.h
@@ -46,11 +46,11 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_blockdev.h"
-#include "ext4_super.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_blockdev.h>
+#include <ext4_super.h>
 
 #include <stdint.h>
 
--- a/include/ext4_dir_idx.h
+++ b/include/ext4_dir_idx.h
@@ -46,11 +46,11 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
 
-#include "ext4_fs.h"
-#include "ext4_dir.h"
+#include <ext4_fs.h>
+#include <ext4_dir.h>
 
 #include <stdint.h>
 #include <stdbool.h>
--- a/include/ext4_errno.h
+++ b/include/ext4_errno.h
@@ -40,7 +40,7 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
+#include <ext4_config.h>
 
 #if !CONFIG_HAVE_OWN_ERRNO
 #include <errno.h>
--- a/include/ext4_extent.h
+++ b/include/ext4_extent.h
@@ -45,9 +45,9 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_inode.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_inode.h>
 
 
 /*
--- a/include/ext4_fs.h
+++ b/include/ext4_fs.h
@@ -46,9 +46,9 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
 
 #include <stdint.h>
 #include <stdbool.h>
--- a/include/ext4_hash.h
+++ b/include/ext4_hash.h
@@ -41,7 +41,7 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
+#include <ext4_config.h>
 
 #include <stdint.h>
 
--- a/include/ext4_ialloc.h
+++ b/include/ext4_ialloc.h
@@ -46,8 +46,8 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
 
 /**@brief Calculate and set checksum of inode bitmap.
  * @param sb superblock pointer.
--- a/include/ext4_inode.h
+++ b/include/ext4_inode.h
@@ -46,8 +46,8 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
 
 #include <stdint.h>
 
--- a/include/ext4_journal.h
+++ b/include/ext4_journal.h
@@ -41,10 +41,10 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "misc/queue.h"
-#include "misc/tree.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <misc/queue.h>
+#include <misc/tree.h>
 
 struct jbd_fs {
 	struct ext4_blockdev *bdev;
--- a/include/ext4_mbr.h
+++ b/include/ext4_mbr.h
@@ -41,8 +41,8 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_blockdev.h"
+#include <ext4_config.h>
+#include <ext4_blockdev.h>
 
 /**@brief Master boot record block devices descriptor*/
 struct ext4_mbr_bdevs {
--- a/include/ext4_mkfs.h
+++ b/include/ext4_mkfs.h
@@ -41,11 +41,11 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
 
-#include "ext4_blockdev.h"
-#include "ext4_fs.h"
+#include <ext4_blockdev.h>
+#include <ext4_fs.h>
 
 #include <stdbool.h>
 #include <stdint.h>
--- a/include/ext4_super.h
+++ b/include/ext4_super.h
@@ -46,9 +46,9 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
 
 /**@brief   Blocks count get stored in superblock.
  * @param   s superblock descriptor
--- a/include/ext4_trans.h
+++ b/include/ext4_trans.h
@@ -41,8 +41,8 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
 
 
 /**@brief   Mark a buffer dirty and add it to the current transaction.
--- a/include/ext4_types.h
+++ b/include/ext4_types.h
@@ -46,9 +46,9 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_blockdev.h"
-#include "misc/tree.h"
+#include <ext4_config.h>
+#include <ext4_blockdev.h>
+#include <misc/tree.h>
 
 #include <stddef.h>
 #include <stdint.h>
--- a/include/ext4_xattr.h
+++ b/include/ext4_xattr.h
@@ -41,9 +41,9 @@
 extern "C" {
 #endif
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_inode.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_inode.h>
 
 struct ext4_xattr_info {
 	uint8_t name_index;
--- a/src/ext4.c
+++ b/src/ext4.c
@@ -34,24 +34,24 @@
  * @brief Ext4 high level operations (file, directory, mountpoints...)
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_oflags.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_oflags.h>
+#include <ext4_debug.h>
 
-#include "ext4.h"
-#include "ext4_trans.h"
-#include "ext4_blockdev.h"
-#include "ext4_fs.h"
-#include "ext4_dir.h"
-#include "ext4_inode.h"
-#include "ext4_super.h"
-#include "ext4_block_group.h"
-#include "ext4_dir_idx.h"
-#include "ext4_xattr.h"
-#include "ext4_journal.h"
+#include <ext4.h>
+#include <ext4_trans.h>
+#include <ext4_blockdev.h>
+#include <ext4_fs.h>
+#include <ext4_dir.h>
+#include <ext4_inode.h>
+#include <ext4_super.h>
+#include <ext4_block_group.h>
+#include <ext4_dir_idx.h>
+#include <ext4_xattr.h>
+#include <ext4_journal.h>
 
 
 #include <stdlib.h>
--- a/src/ext4_balloc.c
+++ b/src/ext4_balloc.c
@@ -38,20 +38,20 @@
  * @brief Physical block allocator.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.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_balloc.h"
-#include "ext4_super.h"
-#include "ext4_crc32.h"
-#include "ext4_block_group.h"
-#include "ext4_fs.h"
-#include "ext4_bitmap.h"
-#include "ext4_inode.h"
+#include <ext4_trans.h>
+#include <ext4_balloc.h>
+#include <ext4_super.h>
+#include <ext4_crc32.h>
+#include <ext4_block_group.h>
+#include <ext4_fs.h>
+#include <ext4_bitmap.h>
+#include <ext4_inode.h>
 
 /**@brief Compute number of block group from block address.
  * @param sb superblock pointer.
--- a/src/ext4_bcache.c
+++ b/src/ext4_bcache.c
@@ -34,12 +34,12 @@
  * @brief Block cache allocator.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_bcache.h"
-#include "ext4_blockdev.h"
-#include "ext4_debug.h"
-#include "ext4_errno.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_bcache.h>
+#include <ext4_blockdev.h>
+#include <ext4_debug.h>
+#include <ext4_errno.h>
 
 #include <string.h>
 #include <stdlib.h>
--- a/src/ext4_bitmap.c
+++ b/src/ext4_bitmap.c
@@ -34,13 +34,13 @@
  * @brief Block/inode bitmap allocator.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_bitmap.h"
+#include <ext4_bitmap.h>
 
 void ext4_bmap_bits_free(uint8_t *bmap, uint32_t sbit, uint32_t bcnt)
 {
--- a/src/ext4_block_group.c
+++ b/src/ext4_block_group.c
@@ -39,13 +39,13 @@
  * @brief Block group function set.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_block_group.h"
+#include <ext4_block_group.h>
 
 /**@brief CRC-16 look up table*/
 static uint16_t const crc16_tab[256] = {
--- a/src/ext4_blockdev.c
+++ b/src/ext4_blockdev.c
@@ -34,15 +34,15 @@
  * @brief Block device module.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_blockdev.h"
-#include "ext4_fs.h"
-#include "ext4_journal.h"
+#include <ext4_blockdev.h>
+#include <ext4_fs.h>
+#include <ext4_journal.h>
 
 #include <string.h>
 #include <stdlib.h>
--- a/src/ext4_crc32.c
+++ b/src/ext4_crc32.c
@@ -36,11 +36,11 @@
  * @brief Crc32c routine. Taken from FreeBSD kernel.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
 #include "ext4_crc32.h"
 
--- a/src/ext4_debug.c
+++ b/src/ext4_debug.c
@@ -34,11 +34,11 @@
  * @brief Debug printf and assert macros.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
 #include <stdarg.h>
 
--- a/src/ext4_dir.c
+++ b/src/ext4_dir.c
@@ -39,18 +39,18 @@
  * @brief Directory handle procedures.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.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_dir.h"
-#include "ext4_dir_idx.h"
-#include "ext4_crc32.h"
-#include "ext4_inode.h"
-#include "ext4_fs.h"
+#include <ext4_trans.h>
+#include <ext4_dir.h>
+#include <ext4_dir_idx.h>
+#include <ext4_crc32.h>
+#include <ext4_inode.h>
+#include <ext4_fs.h>
 
 #include <string.h>
 
--- a/src/ext4_dir_idx.c
+++ b/src/ext4_dir_idx.c
@@ -34,21 +34,21 @@
  * @brief Directory indexing procedures.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.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_dir_idx.h"
-#include "ext4_dir.h"
-#include "ext4_blockdev.h"
-#include "ext4_fs.h"
-#include "ext4_super.h"
-#include "ext4_inode.h"
-#include "ext4_crc32.h"
-#include "ext4_hash.h"
+#include <ext4_trans.h>
+#include <ext4_dir_idx.h>
+#include <ext4_dir.h>
+#include <ext4_blockdev.h>
+#include <ext4_fs.h>
+#include <ext4_super.h>
+#include <ext4_inode.h>
+#include <ext4_crc32.h>
+#include <ext4_hash.h>
 
 #include <string.h>
 #include <stdlib.h>
--- a/src/ext4_extent.c
+++ b/src/ext4_extent.c
@@ -26,19 +26,19 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_blockdev.h"
-#include "ext4_trans.h"
-#include "ext4_fs.h"
-#include "ext4_super.h"
-#include "ext4_crc32.h"
-#include "ext4_balloc.h"
-#include "ext4_extent.h"
+#include <ext4_blockdev.h>
+#include <ext4_trans.h>
+#include <ext4_fs.h>
+#include <ext4_super.h>
+#include <ext4_crc32.h>
+#include <ext4_balloc.h>
+#include <ext4_extent.h>
 
 #include <stdlib.h>
 #include <string.h>
--- 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_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_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>
 
--- a/src/ext4_hash.c
+++ b/src/ext4_hash.c
@@ -61,11 +61,11 @@
  * @brief Directory indexing hash functions.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
 #include <string.h>
 
--- a/src/ext4_ialloc.c
+++ b/src/ext4_ialloc.c
@@ -39,20 +39,20 @@
  * @brief Inode allocation procedures.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.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_ialloc.h"
-#include "ext4_super.h"
-#include "ext4_crc32.h"
-#include "ext4_fs.h"
-#include "ext4_blockdev.h"
-#include "ext4_block_group.h"
-#include "ext4_bitmap.h"
+#include <ext4_trans.h>
+#include <ext4_ialloc.h>
+#include <ext4_super.h>
+#include <ext4_crc32.h>
+#include <ext4_fs.h>
+#include <ext4_blockdev.h>
+#include <ext4_block_group.h>
+#include <ext4_bitmap.h>
 
 /**@brief  Convert i-node number to relative index in block group.
  * @param sb    Superblock
--- a/src/ext4_inode.c
+++ b/src/ext4_inode.c
@@ -39,14 +39,14 @@
  * @brief Inode handle functions
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_inode.h"
-#include "ext4_super.h"
+#include <ext4_inode.h>
+#include <ext4_super.h>
 
 /**@brief  Compute number of bits for block count.
  * @param block_size Filesystem block_size
--- a/src/ext4_journal.c
+++ b/src/ext4_journal.c
@@ -35,18 +35,18 @@
  * @brief Journal handle functions
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_fs.h"
-#include "ext4_super.h"
-#include "ext4_journal.h"
-#include "ext4_blockdev.h"
-#include "ext4_crc32.h"
-#include "ext4_journal.h"
+#include <ext4_fs.h>
+#include <ext4_super.h>
+#include <ext4_journal.h>
+#include <ext4_blockdev.h>
+#include <ext4_crc32.h>
+#include <ext4_journal.h>
 
 #include <string.h>
 #include <stdlib.h>
--- a/src/ext4_mbr.c
+++ b/src/ext4_mbr.c
@@ -34,13 +34,13 @@
  * @brief Master boot record parser
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_mbr.h"
+#include <ext4_mbr.h>
 
 #include <inttypes.h>
 #include <string.h>
--- a/src/ext4_mkfs.c
+++ b/src/ext4_mkfs.c
@@ -34,20 +34,20 @@
  * @brief
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_super.h"
-#include "ext4_block_group.h"
-#include "ext4_dir.h"
-#include "ext4_dir_idx.h"
-#include "ext4_fs.h"
-#include "ext4_inode.h"
-#include "ext4_ialloc.h"
-#include "ext4_mkfs.h"
+#include <ext4_super.h>
+#include <ext4_block_group.h>
+#include <ext4_dir.h>
+#include <ext4_dir_idx.h>
+#include <ext4_fs.h>
+#include <ext4_inode.h>
+#include <ext4_ialloc.h>
+#include <ext4_mkfs.h>
 
 #include <inttypes.h>
 #include <string.h>
--- a/src/ext4_super.c
+++ b/src/ext4_super.c
@@ -39,14 +39,14 @@
  * @brief Superblock operations.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_super.h"
-#include "ext4_crc32.h"
+#include <ext4_super.h>
+#include <ext4_crc32.h>
 
 uint32_t ext4_block_group_cnt(struct ext4_sblock *s)
 {
--- a/src/ext4_trans.c
+++ b/src/ext4_trans.c
@@ -35,14 +35,14 @@
  * @brief Ext4 transaction buffer operations.
  */
 
-#include "ext4_config.h"
-#include "ext4_types.h"
-#include "ext4_misc.h"
-#include "ext4_errno.h"
-#include "ext4_debug.h"
+#include <ext4_config.h>
+#include <ext4_types.h>
+#include <ext4_misc.h>
+#include <ext4_errno.h>
+#include <ext4_debug.h>
 
-#include "ext4_fs.h"
-#include "ext4_journal.h"
+#include <ext4_fs.h>
+#include <ext4_journal.h>
 
 int ext4_trans_set_block_dirty(struct ext4_buf *buf)
 {
--- a/src/ext4_xattr.c
+++ b/src/ext4_xattr.c
@@ -34,21 +34,21 @@
  * @brief Extended Attribute manipulation.
  */
 
-#include "ext4_config.h"
-#include "ext4_debug.h"
-#include "ext4_errno.h"
-#include "ext4_misc.h"
-#include "ext4_types.h"
+#include <ext4_config.h>
+#include <ext4_debug.h>
+#include <ext4_errno.h>
+#include <ext4_misc.h>
+#include <ext4_types.h>
 
-#include "ext4_balloc.h"
-#include "ext4_block_group.h"
-#include "ext4_blockdev.h"
-#include "ext4_crc32.h"
-#include "ext4_fs.h"
-#include "ext4_inode.h"
-#include "ext4_super.h"
-#include "ext4_trans.h"
-#include "ext4_xattr.h"
+#include <ext4_balloc.h>
+#include <ext4_block_group.h>
+#include <ext4_blockdev.h>
+#include <ext4_crc32.h>
+#include <ext4_fs.h>
+#include <ext4_inode.h>
+#include <ext4_super.h>
+#include <ext4_trans.h>
+#include <ext4_xattr.h>
 
 #include <stdlib.h>
 #include <string.h>