aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-07-31 16:51:06 +0200
committerHimbeer <himbeer@disroot.org>2024-08-01 19:28:07 +0200
commit4224428f5ff2165585de8de655e86f1b04a3344f (patch)
treeb84ad96048a54f189b3c335fd131d14f22db6a64
parent3d0db396f1ce805c9ff81fdb4e858fc8c9118a71 (diff)
root: Fix end() not being prefixed with 'os' container
-rw-r--r--src/root.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/root.zig b/src/root.zig
index d6362e6..5de5e71 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -4,12 +4,13 @@
const builtin = @import("builtin");
const root = @import("root");
+
pub const os = @import("os.zig");
fn _start() callconv(.C) noreturn {
if (!@hasDecl(root, "main")) @compileError("no main function");
root.main();
- end();
+ os.end();
}
comptime {