mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-06 18:03:17 +03:00
ed36dbbd9c
that's all this commit does. further commits will fix cli flags and such. see #2221
6 lines
186 B
Zig
6 lines
186 B
Zig
const builtin = @import("builtin");
|
|
const std = @import("../std.zig");
|
|
pub const is_the_target = builtin.os == .netbsd;
|
|
pub usingnamespace std.c;
|
|
pub usingnamespace @import("bits.zig");
|