| author | |
| committer | |
| log | a530a111a51151474047656e4ed65815ef10ac42 |
| tree | 6b866046054057a791804675aced8a73ba9a8af7 |
| parent | 84682eb8626ae44e1098df8147e460c96242f703 |
1 files changed, 0 insertions(+), 4 deletions(-)
std/os/wasi.zig-4| ... | ... | @@ -10,10 +10,6 @@ pub fn getErrno(r: usize) usize { |
| 10 | 10 | return if (signed_r > -4096 and signed_r < 0) @intCast(usize, -signed_r) else 0; |
| 11 | 11 | } |
| 12 | 12 | |
| 13 | pub fn exit(status: i32) noreturn { | |
| 14 | proc_exit(@bitCast(exitcode_t, isize(status))); | |
| 15 | } | |
| 16 | ||
| 17 | 13 | pub fn write(fd: i32, buf: [*]const u8, count: usize) usize { |
| 18 | 14 | var nwritten: usize = undefined; |
| 19 | 15 |