zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

cImport_builtin.zig (228B) - Raw


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