From 05a30292f9d2be63af3b4c27d5ae89801da602a2 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 23 Jul 2019 13:48:29 -0700 Subject: Enable largefile support Requires that config.h be included before other headers, since the macro _FILE_OFFSET_BITS changes the definitions of things like 'struct stat'. I chose to simply include it at the top of every C file and at immediately after the double-inclusion guards of every header. Signed-off-by: Matt Turner Signed-off-by: David Oberhollenzer --- unpack/rdsquashfs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'unpack/rdsquashfs.h') diff --git a/unpack/rdsquashfs.h b/unpack/rdsquashfs.h index 0ee48fa..aa051a2 100644 --- a/unpack/rdsquashfs.h +++ b/unpack/rdsquashfs.h @@ -2,6 +2,8 @@ #ifndef RDSQUASHFS_H #define RDSQUASHFS_H +#include "config.h" + #include "meta_reader.h" #include "data_reader.h" #include "highlevel.h" @@ -9,7 +11,6 @@ #include "compress.h" #include "id_table.h" #include "fstree.h" -#include "config.h" #include "util.h" #include -- cgit v1.2.3