summaryrefslogtreecommitdiff
path: root/ext4_utils/ext4_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext4_utils/ext4_utils.c')
-rw-r--r--ext4_utils/ext4_utils.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/ext4_utils/ext4_utils.c b/ext4_utils/ext4_utils.c
index f358960c..bfa57bc7 100644
--- a/ext4_utils/ext4_utils.c
+++ b/ext4_utils/ext4_utils.c
@@ -14,24 +14,26 @@
* limitations under the License.
*/
-#include "ext4_utils.h"
+#include "ext4_utils/ext4_utils.h"
+
+#include <fcntl.h>
+#include <inttypes.h>
+#include <stddef.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+
+#include <sparse/sparse.h>
+
#include "allocate.h"
-#include "indirect.h"
#include "extent.h"
+#include "indirect.h"
#include "sha1.h"
-#include <sparse/sparse.h>
#ifdef REAL_UUID
#include <uuid.h>
#endif
-#include <fcntl.h>
-#include <inttypes.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <stddef.h>
-#include <string.h>
-
#ifdef _WIN32
#include <winsock2.h>
#else