diff options
author | 2022-03-08 18:54:54 -0800 | |
---|---|---|
committer | 2022-03-08 18:54:54 -0800 | |
commit | 701d6ec45d7e339b352b37869bd2a7d4849b35fb (patch) | |
tree | a88a0b03a2e644d5e1bd51eb609526b75f78ef53 /misctools/fetch.zig | |
parent | 787769ac3912fce6d1ffdbd384f19b800e133362 (diff) | |
download | bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.tar.gz bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.tar.zst bun-701d6ec45d7e339b352b37869bd2a7d4849b35fb.zip |
rename _global -> bun
Diffstat (limited to 'misctools/fetch.zig')
-rw-r--r-- | misctools/fetch.zig | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/misctools/fetch.zig b/misctools/fetch.zig index 236639c76..62c66b9c3 100644 --- a/misctools/fetch.zig +++ b/misctools/fetch.zig @@ -1,14 +1,14 @@ const std = @import("std"); -const _global = @import("../src/global.zig"); -const string = _global.string; -const Output = _global.Output; -const Global = _global.Global; -const Environment = _global.Environment; -const strings = _global.strings; -const MutableString = _global.MutableString; -const stringZ = _global.stringZ; -const default_allocator = _global.default_allocator; -const C = _global.C; +const bun = @import("../src/global.zig"); +const string = bun.string; +const Output = bun.Output; +const Global = bun.Global; +const Environment = bun.Environment; +const strings = bun.strings; +const MutableString = bun.MutableString; +const stringZ = bun.stringZ; +const default_allocator = bun.default_allocator; +const C = bun.C; const clap = @import("../src/deps/zig-clap/clap.zig"); const URL = @import("../src/query_string_map.zig").URL; @@ -60,8 +60,8 @@ const MethodNames = std.ComptimeStringMap(Method, .{ .{ "head", Method.HEAD }, }); -var file_path_buf: [_global.MAX_PATH_BYTES + 1]u8 = undefined; -var cwd_buf: [_global.MAX_PATH_BYTES + 1]u8 = undefined; +var file_path_buf: [bun.MAX_PATH_BYTES + 1]u8 = undefined; +var cwd_buf: [bun.MAX_PATH_BYTES + 1]u8 = undefined; pub const Arguments = struct { url: URL, |