pub fn stderr() File
pub fn stderr() File { return switch (native_os) { .windows => .{ .handle = std.os.windows.peb().ProcessParameters.hStdError, .flags = .{ .nonblocking = false }, }, else => .{ .handle = std.posix.STDERR_FILENO, .flags = .{ .nonblocking = false }, }, }; }