From e06052f201a63edd772ffade74551d159c7a7784 Mon Sep 17 00:00:00 2001 From: Michal Ziulek Date: Wed, 15 Sep 2021 19:38:00 +0200 Subject: Added implementation for _fseeki64 and _ftelli64 from mingw-w64 9.0.0 (#9402). (#9766) * Added fseeki64.c from mingw-w64 9.0.0. This file was missing in Zig distribution. This file contains implementation for _fseeki64 and _ftelli64 functions. --- src/mingw.zig | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/mingw.zig b/src/mingw.zig index 587f019270..84857df5b5 100644 --- a/src/mingw.zig +++ b/src/mingw.zig @@ -857,6 +857,7 @@ const mingwex_generic_src = [_][]const u8{ "stdio" ++ path.sep_str ++ "fopen64.c", "stdio" ++ path.sep_str ++ "fseeko32.c", "stdio" ++ path.sep_str ++ "fseeko64.c", + "stdio" ++ path.sep_str ++ "fseeki64.c", "stdio" ++ path.sep_str ++ "fsetpos64.c", "stdio" ++ path.sep_str ++ "ftello.c", "stdio" ++ path.sep_str ++ "ftello64.c", -- cgit v1.2.3