commit 169f28d3e6a908717a0e42323ba1a0ee765976da (tree)
parent e1424b84b87903df265cc052f3dac17d1ec1c3be
Author: Igor Anić <igor.anic@gmail.com>
Date: Wed, 29 Nov 2023 15:31:22 +0100
tar: fix import path
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/lib/std/tar.zig b/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,