On 2017/12/19 20:13, Martin Storsjö wrote: > This matches what MSVC does. > > Signed-off-by: Martin Storsjö <[email protected]> > --- > mingw-w64-crt/def-include/msvcrt-common.def.in | 2 ++ > mingw-w64-crt/lib-common/ucrtbase.def.in | 4 ++++ > 2 files changed, 6 insertions(+) >
On my 64-bit Win7 only MSVCRT has this function exported. The x86 MSVCRT in turn calls `utime32()` while the x64 one calls `_utime64()`. These functions are not exported by any UCRTBASE.DLL here. In <sys/utime.h> from all three versions of Win10 SDKs I have installed (10240, 15063 and 16299), this function is specified as `static inline` thus isn't meant to be imported from any other library. -- Best regards, LH_Mouse ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
