Fix std @import

This commit is contained in:
Joran Dirk Greef 2020-09-19 15:14:47 +02:00
parent b2a54b9581
commit 09f2f4aeb3

View File

@ -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;