mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
11 lines
176 B
Zig
11 lines
176 B
Zig
const c = @cImport({
|
|
@cDefine("_NO_CRT_STDIO_INLINE", "1");
|
|
@cInclude("stdio.h");
|
|
});
|
|
pub fn main() void {
|
|
_ = c;
|
|
}
|
|
|
|
// exe=succeed
|
|
// link_libc
|
|
// verbose_cimport
|