Make the leb module available to non-std code

This commit is contained in:
LemonBoy 2019-11-04 09:58:02 +01:00
parent 2f740fa19f
commit c8b6e55299

View File

@ -17,7 +17,7 @@ const maxInt = std.math.maxInt;
const File = std.fs.File;
const windows = std.os.windows;
const leb = @import("debug/leb128.zig");
pub const leb = @import("debug/leb128.zig");
pub const FailingAllocator = @import("debug/failing_allocator.zig").FailingAllocator;
pub const failing_allocator = &FailingAllocator.init(global_allocator, 0).allocator;