Windows has no concept of stat.
On Linux, the stat bits/wrappers are removed due to having to maintain
the different varying stat structs per target and libc, leading to runtime
errors. Users targeting Linux should add a comptime check and use statx,
similar to how Io.File.stat does.
pub const Stat = switch (native_os)
pub const Stat = switch (native_os) {
.windows => void,
.linux => void,
else => system.Stat,
}