master
1const c = @cImport({
2 // See https://github.com/ziglang/zig/issues/515
3 @cDefine("_NO_CRT_STDIO_INLINE", "1");
4 @cInclude("stdio.h");
5});
6pub fn main() void {
7 _ = c.printf("hello\n");
8}
9
10// exe=succeed
11// link_libc