aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.zig')
-rw-r--r--src/main.zig13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig
new file mode 100644
index 0000000..de602dd
--- /dev/null
+++ b/src/main.zig
@@ -0,0 +1,13 @@
+//! By convention, main.zig is where your main function lives in the case that
+//! you are building an executable. If you are making a library, the convention
+//! is to delete this file and start with root.zig instead.
+//const std = @import("std");
+
+export fn _start() callconv(.C) noreturn {
+ while (true) {}
+}
+
+export fn fault_handler() callconv(.C) void {
+ while (true) {}
+}
+