headers: Remove inline definition of _fstat64i32() and _stat64i32() functions
These functions in sys/stat.h are defined as wrappers around _fstat64() and
_stat64() functions. But msvcr80+ and UCRT DLL libraries provide native
_fstat64i32() and _stat64i32() functions and so it is not needed to use
inline fallback wrappers.
For pre-msvcr80 builds, mingw-w64 already provides fallback implementations
in all CRT import libraries.
So remove inline definition of _fstat64i32() and _stat64i32() functions as
they are not needed and for msvcr80+ just prevents using them natively.
Signed-off-by: Martin Storsjö <martin@martin.st>
4 files changed