mirror of
https://github.com/ziglang/zig.git
synced 2024-11-16 00:57:04 +00:00
ed36dbbd9c
that's all this commit does. further commits will fix cli flags and such. see #2221
9 lines
251 B
Zig
9 lines
251 B
Zig
const builtin = @import("builtin");
|
|
const std = @import("../std.zig");
|
|
pub const is_the_target = switch (builtin.os) {
|
|
.macosx, .tvos, .watchos, .ios => true,
|
|
else => false,
|
|
};
|
|
pub usingnamespace std.c;
|
|
pub usingnamespace @import("bits.zig");
|