| ... | @@ -1269,6 +1269,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize { | ... | @@ -1269,6 +1269,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize { |
| 1269 | .FBIG => return error.FileTooBig, | 1269 | .FBIG => return error.FileTooBig, |
| 1270 | .IO => return error.InputOutput, | 1270 | .IO => return error.InputOutput, |
| 1271 | .NOSPC => return error.NoSpaceLeft, | 1271 | .NOSPC => return error.NoSpaceLeft, |
| | 1272 | .ACCES => return error.AccessDenied, |
| 1272 | .PERM => return error.AccessDenied, | 1273 | .PERM => return error.AccessDenied, |
| 1273 | .PIPE => return error.BrokenPipe, | 1274 | .PIPE => return error.BrokenPipe, |
| 1274 | .CONNRESET => return error.ConnectionResetByPeer, | 1275 | .CONNRESET => return error.ConnectionResetByPeer, |