fix compilation failures found by CI

This commit is contained in:
Andrew Kelley
2024-03-18 23:59:35 -07:00
parent 6b2899df2a
commit 8c94950c24
28 changed files with 126 additions and 128 deletions

View File

@@ -12,11 +12,11 @@ pub fn main() void {
}
fn stopSayingThat() void {
_ = std.os.write(1, "Hello, my name is Inigo Montoya; you killed my father, prepare to die.\n") catch {};
_ = std.posix.write(1, "Hello, my name is Inigo Montoya; you killed my father, prepare to die.\n") catch {};
}
fn moveEveryZig() void {
_ = std.os.write(1, "All your codebase are belong to us\n") catch {};
_ = std.posix.write(1, "All your codebase are belong to us\n") catch {};
}
// run