diff options
| author | N00byEdge <hannesbredberg@gmail.com> | 2021-07-30 19:27:41 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2021-08-02 11:05:05 +0000 |
| commit | 871f6343f4d36c5c048f3307e2a38d184e248826 (patch) | |
| tree | 26ee969fa8a7238461f0a7a2caeb399f9388bc85 /lib/std/os/bits/linux.zig | |
| parent | 934df5bd448e7e27f2142d0d9ceec534f391c7f5 (diff) | |
| download | zig-871f6343f4d36c5c048f3307e2a38d184e248826.tar.gz zig-871f6343f4d36c5c048f3307e2a38d184e248826.zip | |
Move iovec and log levels to bits/posix.zig
This lets only the OSes that uses them to import them, and removes
dependencies on bits.zig for the os/<os>/<arch>.zig files
Diffstat (limited to 'lib/std/os/bits/linux.zig')
| -rw-r--r-- | lib/std/os/bits/linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig index 81bdfa6608..28683d47a9 100644 --- a/lib/std/os/bits/linux.zig +++ b/lib/std/os/bits/linux.zig @@ -6,7 +6,7 @@ const std = @import("../../std.zig"); const maxInt = std.math.maxInt; const arch = @import("builtin").target.cpu.arch; -usingnamespace @import("../bits.zig"); +pub usingnamespace @import("posix.zig"); pub usingnamespace switch (arch) { .mips, .mipsel => @import("linux/errno-mips.zig"), |
