diff options
-rw-r--r-- | src/root.zig | 3 |
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 { |