Files
uc2/cli/src
Eremey Valetov 345aabd423 Fix Windows utime conflict: rename to compat__utime + macro shim
Win10 SDK 26100's <sys/utime.h> provides an inline utime() wrapper
that forwards to _utime32 (ANSI-codepath, not UTF-8).  Defining our
own utime() collided with the inline (C2084: function already has a
body).

Rename the compat function to compat__utime and have the utime.h
shim translate utime -> compat__utime via #define so UC2's UTF-8
paths still go through compat__wpath at the call site.
2026-05-04 16:41:28 -04:00
..