authorgravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-09-17 19:56:57+02:00
committergravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-09-17 19:56:57+02:00
loge33c466dafce1d19014e5b9b9606f42b93d8f408
treea1015fce93d22cc2540f9664a9af90cc76fe06b0
parentd966fe63190de2992d6a7985bc492b9d9699d253

Use std.builtin


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/io_uring.zig+1-1
......@@ -3,9 +3,9 @@
33// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
44// The MIT license requires this copyright notice to be included in all copies
55// and substantial portions of the software.
6const builtin = @import("builtin");
76const std = @import("std");
87const assert = std.debug.assert;
8const builtin = std.builtin;
99const os = std.os;
1010const linux = os.linux;
1111const mem = std.mem;