mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 01:04:43 +01:00
12 lines
274 B
Zig
12 lines
274 B
Zig
const c = @cImport({
|
|
@cDefine("_NO_CRT_STDIO_INLINE", "1");
|
|
@cInclude("stdio.h");
|
|
});
|
|
pub fn main() void {
|
|
if (@import("builtin").os.tag == .netbsd) return; // https://github.com/Vexu/arocc/issues/960
|
|
_ = c;
|
|
}
|
|
|
|
// exe=succeed
|
|
// link_libc
|
|
// verbose_cimport
|