This commit is contained in:
Chris Boesch 2023-02-16 11:15:07 +01:00
parent 7a646ddf09
commit 9b24702c9c
2 changed files with 13 additions and 4 deletions

View file

@ -1,4 +1,4 @@
58c58
< const c_res = fprintf(c.stderr, "Hello C from Zig!");
63c63
< const c_res = fprintf(stderr, "Hello C from Zig!");
---
> const c_res = c.fprintf(c.stderr, "Hello C from Zig!");
> const c_res = c.fprintf(stderr, "Hello C from Zig!");