small improvements in hello_c

This commit is contained in:
Chris Boesch 2023-02-19 00:00:08 +01:00
parent 393a4fe41e
commit 2866313896
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
57c57
< const c_res = write(2, "Hello C from Zig!", 17);
< const c_res = ???write(2, "Hello C from Zig!", 17);
---
> const c_res = c.write(2, "Hello C from Zig!", 17);