std: change @import("builtin") to std.builtin

This commit is contained in:
Andrew Kelley
2021-04-12 16:43:50 -07:00
parent a4bb7c8bb1
commit 429cd2b5dd
86 changed files with 263 additions and 268 deletions

View File

@@ -32,7 +32,7 @@
state: usize = UNSET,
const std = @import("../std.zig");
const builtin = @import("builtin");
const builtin = std.builtin;
const testing = std.testing;
const assert = std.debug.assert;
const StaticResetEvent = std.Thread.StaticResetEvent;