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 @@...@@ -3,9 +3,9 @@
3// This file is part of [zig](https://ziglang.org/), which is MIT licensed.3// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
4// The MIT license requires this copyright notice to be included in all copies4// The MIT license requires this copyright notice to be included in all copies
5// and substantial portions of the software.5// and substantial portions of the software.
6const builtin = @import("builtin");
7const std = @import("std");6const std = @import("std");
8const assert = std.debug.assert;7const assert = std.debug.assert;
8const builtin = std.builtin;
9const os = std.os;9const os = std.os;
10const linux = os.linux;10const linux = os.linux;
11const mem = std.mem;11const mem = std.mem;