diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-04-09 10:15:46 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 10:15:46 -0700 |
| commit | f75cdd1acd0929792c33766bd1d093d897c65113 (patch) | |
| tree | 4f67752f34d4d3d8b78631b48d48fb971000c7a1 /lib/std/std.zig | |
| parent | 952032b40cd6e3dbffc5642d17a7a05fa7c83895 (diff) | |
| parent | afe5862111034ea4100b0eea5971e181d70ffc39 (diff) | |
| download | zig-f75cdd1acd0929792c33766bd1d093d897c65113.tar.gz zig-f75cdd1acd0929792c33766bd1d093d897c65113.zip | |
Merge pull request #8470 from ziglang/stage2-start
stage2: blaze the trail for std lib integration
Diffstat (limited to 'lib/std/std.zig')
| -rw-r--r-- | lib/std/std.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig index f8bc477068..5f10def72e 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -92,7 +92,7 @@ pub const zig = @import("zig.zig"); pub const start = @import("start.zig"); // This forces the start.zig file to be imported, and the comptime logic inside that -// file decides whether to export any appropriate start symbols. +// file decides whether to export any appropriate start symbols, and call main. comptime { _ = start; } |
