diff --git a/lib/std/posix.zig b/lib/std/posix.zig index f99875437d..d176eecaa5 100644 --- a/lib/std/posix.zig +++ b/lib/std/posix.zig @@ -1269,6 +1269,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize { .FBIG => return error.FileTooBig, .IO => return error.InputOutput, .NOSPC => return error.NoSpaceLeft, + .ACCES => return error.AccessDenied, .PERM => return error.AccessDenied, .PIPE => return error.BrokenPipe, .CONNRESET => return error.ConnectionResetByPeer,