From 161e726819932d7aa52e6d3fde3d9b00d6a4ec6e Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 24 Jul 2025 18:10:56 +0200 Subject: [PATCH] CRC32: #define __USE_LARGEFILE64, because it's apparently needed for the off64_t type. --- src/utils/crc32.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/crc32.c b/src/utils/crc32.c index 7ac4456ce..1047c48d6 100644 --- a/src/utils/crc32.c +++ b/src/utils/crc32.c @@ -21,6 +21,8 @@ */ #include #include + +#define __USE_LARGEFILE64 #include #ifdef MAKECRCH