| author | |
| committer | |
| log | dd01a49b27732c2956621835a83df7d0dcd4d718 |
| tree | d55204921263deeb0fea4402cdcade201ea4749e |
| parent | 90ff1ca33f1482bb8011e97bb12a4335eabfe36a |
| signature |
2 files changed, 6 insertions(+), 0 deletions(-)
Dir.zig+2| ... | ... | @@ -12,6 +12,8 @@ const sys = switch (os) { |
| 12 | 12 | else => unreachable, |
| 13 | 13 | }; |
| 14 | 14 | |
| 15 | pub const cwd = nfs.cwd; | |
| 16 | ||
| 15 | 17 | fd: nfs.Handle, |
| 16 | 18 | |
| 17 | 19 | // Resource allocation may fail; resource deallocation must succeed. |
File.zig+4| ... | ... | @@ -14,6 +14,10 @@ const sys = switch (os) { |
| 14 | 14 | else => unreachable, |
| 15 | 15 | }; |
| 16 | 16 | |
| 17 | pub const stdin = nfs.stdin; | |
| 18 | pub const stdout = nfs.stdout; | |
| 19 | pub const stderr = nfs.stderr; | |
| 20 | ||
| 17 | 21 | fd: nfs.Handle, |
| 18 | 22 | |
| 19 | 23 | // Resource allocation may fail; resource deallocation must succeed. |