inserted a workaround for mac-os, see https://github.com/ziglang/zig/issues/14657#issuecomment-1432180967
This commit is contained in:
parent
7a646ddf09
commit
9b24702c9c
2 changed files with 13 additions and 4 deletions
|
|
@ -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!");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue