aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-06-27 19:16:24 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-06-27 19:16:24 -0400
commitff477361b005f059591e92e079d62e68153365e1 (patch)
tree8b3edf357fa9b73d824753ba9ebebee158e9e8b2 /std
parent0a0c11685fd8faf73392d88dbdee7c744cc83386 (diff)
parent69c7c5de09e16e96a6ea5207ef8b3a21e9d119f9 (diff)
downloadzig-ff477361b005f059591e92e079d62e68153365e1.tar.gz
zig-ff477361b005f059591e92e079d62e68153365e1.zip
Merge branch 'emekoi-root-import'
Diffstat (limited to 'std')
-rw-r--r--std/special/bootstrap.zig5
1 files changed, 2 insertions, 3 deletions
diff --git a/std/special/bootstrap.zig b/std/special/bootstrap.zig
index f1286bd659..7177f58b8a 100644
--- a/std/special/bootstrap.zig
+++ b/std/special/bootstrap.zig
@@ -1,7 +1,6 @@
-// This file is in a package which has the root source file exposed as "@root".
-// It is included in the compilation unit when exporting an executable.
+// This file is included in the compilation unit when exporting an executable.
-const root = @import("@root");
+const root = @import("root");
const std = @import("std");
const builtin = @import("builtin");
const assert = std.debug.assert;