This commit is contained in:
nub31
2026-03-01 18:14:54 +01:00
parent 5f4a4172bf
commit 2b7eb56895
9 changed files with 192 additions and 138 deletions

View File

@@ -1,5 +1,5 @@
module sys
export extern func read(fd: u32 buf: ^u8 count: u64): i64
export extern func write(fd: u32 buf: ^u8 count: u64): i64
export extern func open(fileName: ^u8 flags: i32 mode: u16): i64
export extern func read(fd: u32, buf: ^u8, count: u64): i64
export extern func write(fd: u32, buf: ^u8, count: u64): i64
export extern func open(fileName: ^u8, flags: i32, mode: u16): i64