zig

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

commit 09f2f4aeb366279f30256a5968a246369fafcc27 (tree)
parent b2a54b95814eeeb657ca953cb0547e3169893d2d
Author: Joran Dirk Greef <joran@ronomon.com>
Date:   Sat, 19 Sep 2020 15:14:47 +0200

Fix std @import

Diffstat:
Mlib/std/io_uring.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/io_uring.zig b/lib/std/io_uring.zig @@ -3,7 +3,7 @@ // This file is part of [zig](https://ziglang.org/), which is MIT licensed. // The MIT license requires this copyright notice to be included in all copies // and substantial portions of the software. -const std = @import("std"); +const std = @import("std.zig"); const assert = std.debug.assert; const builtin = std.builtin; const os = std.os;