summaryrefslogtreecommitdiff
path: root/ext4_utils/ext4fixup.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext4_utils/ext4fixup.c')
-rw-r--r--ext4_utils/ext4fixup.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/ext4_utils/ext4fixup.c b/ext4_utils/ext4fixup.c
index 09602b62..f9285d03 100644
--- a/ext4_utils/ext4fixup.c
+++ b/ext4_utils/ext4fixup.c
@@ -13,20 +13,23 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#include "ext4_utils.h"
-#include "make_ext4fs.h"
-#include "ext4_extents.h"
-#include "allocate.h"
+
#include "ext4fixup.h"
-#include <sparse/sparse.h>
+#define _LARGEFILE64_SOURCE
-#include <sys/types.h>
+#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include <fcntl.h>
#include <unistd.h>
+#include <sparse/sparse.h>
+
+#include "allocate.h"
+#include "ext4_utils/ext4_extents.h"
+#include "ext4_utils/ext4_utils.h"
+#include "ext4_utils/make_ext4fs.h"
+
#ifndef _WIN32
#include <sys/mman.h>
#endif