zig

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

commit e33c466dafce1d19014e5b9b9606f42b93d8f408 (tree)
parent d966fe63190de2992d6a7985bc492b9d9699d253
Author: Joran Dirk Greef <joran@ronomon.com>
Date:   Thu, 17 Sep 2020 19:56:57 +0200

Use std.builtin

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,9 +3,9 @@ // 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 builtin = @import("builtin"); const std = @import("std"); const assert = std.debug.assert; +const builtin = std.builtin; const os = std.os; const linux = os.linux; const mem = std.mem;