diff options
| author | Michal Ziulek <michalziulek@gmail.com> | 2021-09-15 19:38:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-15 13:38:00 -0400 |
| commit | e06052f201a63edd772ffade74551d159c7a7784 (patch) | |
| tree | 9fbe3f52abd34969cea3f9b328257289f41594c8 /src/mingw.zig | |
| parent | 2b90e2c2841e805ed1a1c3d16da96eb2fb8cd97d (diff) | |
| download | zig-e06052f201a63edd772ffade74551d159c7a7784.tar.gz zig-e06052f201a63edd772ffade74551d159c7a7784.zip | |
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.
Diffstat (limited to 'src/mingw.zig')
| -rw-r--r-- | src/mingw.zig | 1 |
1 files changed, 1 insertions, 0 deletions
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", |
