aboutsummaryrefslogtreecommitdiff
path: root/doc/langref/cImport_builtin.zig
blob: daed710f9ddbf826f361141297d670f6e2fca66d (plain)
1
2
3
4
5
6
7
8
9
10
11
const c = @cImport({
    // See https://github.com/ziglang/zig/issues/515
    @cDefine("_NO_CRT_STDIO_INLINE", "1");
    @cInclude("stdio.h");
});
pub fn main() void {
    _ = c.printf("hello\n");
}

// exe=succeed
// link_libc