diff options
author | 2021-10-01 02:06:35 -0700 | |
---|---|---|
committer | 2021-10-01 02:06:35 -0700 | |
commit | c8127d0ae6f7e1efa3e514411bc08d21ff22cbdc (patch) | |
tree | 3e4fe5b856e13c55af86b92d30668e0dc3929e70 /src/global.zig | |
parent | 8764fa6d4e1c32b4fce90a2ac7db2f14d50b354a (diff) | |
download | bun-c8127d0ae6f7e1efa3e514411bc08d21ff22cbdc.tar.gz bun-c8127d0ae6f7e1efa3e514411bc08d21ff22cbdc.tar.zst bun-c8127d0ae6f7e1efa3e514411bc08d21ff22cbdc.zip |
Split out the macOS specific parts
Diffstat (limited to 'src/global.zig')
-rw-r--r-- | src/global.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/global.zig b/src/global.zig index 1fec9ac5c..236751a6b 100644 --- a/src/global.zig +++ b/src/global.zig @@ -4,7 +4,8 @@ pub usingnamespace @import("strings.zig"); pub const default_allocator: *std.mem.Allocator = if (isTest) std.heap.c_allocator else @import("./memory_allocator.zig").c_allocator; pub const C = @import("c.zig"); -pub usingnamespace @import("env.zig"); +pub const Environment = @import("env.zig"); +pub usingnamespace Environment; pub const FeatureFlags = @import("feature_flags.zig"); const root = @import("root"); |