zig/std/os/darwin.zig
Andrew Kelley 7e75e1075e
zig fmt
2019-08-15 18:19:04 -04:00

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");