From 9693860bc0cbb49ac68ad23a8297be6eb1bc2add Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Thu, 16 Feb 2023 11:15:07 +0100 Subject: inserted a workaround for mac-os, see https://github.com/ziglang/zig/issues/14657#issuecomment-1432180967 --- patches/patches/093_hello_c.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'patches') diff --git a/patches/patches/093_hello_c.patch b/patches/patches/093_hello_c.patch index 15e2a44..a0f62c2 100644 --- a/patches/patches/093_hello_c.patch +++ b/patches/patches/093_hello_c.patch @@ -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!"); -- cgit v1.2.3