From ff94eec37452dbc60ccc7d58969c118455311ea9 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 20 Aug 2014 16:37:34 +0100 Subject: [PATCH] Added macro, for large file support on 32-bits AIX --- programs/lz4io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/lz4io.c b/programs/lz4io.c index 8bd10fc..2715972 100644 --- a/programs/lz4io.c +++ b/programs/lz4io.c @@ -45,6 +45,7 @@ # endif #endif +#define _LARGE_FILES // Large file support on 32-bits AIX #define _FILE_OFFSET_BITS 64 // Large file support on 32-bits unix #define _POSIX_SOURCE 1 // for fileno() within on unix -- 2.7.4