aboutsummaryrefslogtreecommitdiff
path: root/std/os.zig
diff options
context:
space:
mode:
Diffstat (limited to 'std/os.zig')
-rw-r--r--std/os.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/std/os.zig b/std/os.zig
index a2fbca812b..5f6716e017 100644
--- a/std/os.zig
+++ b/std/os.zig
@@ -19,7 +19,7 @@ const builtin = @import("builtin");
const MAX_PATH_BYTES = std.fs.MAX_PATH_BYTES;
comptime {
- assert(@import("std") == std); // You have to run the std lib tests with --override-std-dir
+ assert(@import("std") == std); // std lib tests require --override-std-dir
}
pub const darwin = @import("os/darwin.zig");
@@ -43,6 +43,8 @@ pub const system = if (builtin.link_libc) std.c else switch (builtin.os) {
else => struct {},
};
+pub use @import("os/bits.zig");
+
/// See also `getenv`.
pub var environ: [][*]u8 = undefined;