zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 8530b6b7242ebf43b5cb4ae3a2644593f4961a5e (tree)
parent 7a793a9b9d38adc6800834d2dc11a1037b1aef4d
Author: Matt Knight <mattnite@protonmail.com>
Date:   Fri, 23 Apr 2021 23:57:48 -0700

fix import path

Diffstat:
Mlib/std/os/linux/bpf/btf.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/os/linux/bpf/btf.zig b/lib/std/os/linux/bpf/btf.zig @@ -6,7 +6,7 @@ const magic = 0xeb9f; const version = 1; -pub const ext = @import("ext.zig"); +pub const ext = @import("btf_ext.zig"); /// All offsets are in bytes relative to the end of this header pub const Header = packed struct {