Commit 169f28d3e6

Igor Anić <igor.anic@gmail.com>
2023-11-29 15:31:22
tar: fix import path
1 parent e1424b8
Changed files (1)
lib
lib/std/tar.zig
@@ -1,3 +1,6 @@
+const std = @import("std.zig");
+const assert = std.debug.assert;
+
 pub const Options = struct {
     /// Number of directory levels to skip when extracting files.
     strip_components: u32 = 0,