From: antirez Date: Thu, 7 Jan 2010 20:49:00 +0000 (-0500) Subject: added the fmacros to enable support for fseeko() lseeko() with 64bit off_t X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/87eaf97f1452a31e847e1be0923479f41cdcd81d?ds=inline added the fmacros to enable support for fseeko() lseeko() with 64bit off_t --- diff --git a/fmacros.h b/fmacros.h index 7c9b91ae..986776f2 100644 --- a/fmacros.h +++ b/fmacros.h @@ -3,5 +3,7 @@ #define _BSD_SOURCE #define _XOPEN_SOURCE +#define _LARGEFILE_SOURCE +#define _FILE_OFFSET_BITS 64 #endif