aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.zig
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-10-05 12:13:49 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-10-05 12:13:49 -0400
commitf529a3b0f8ee24229997e995021a2ee8cb25f065 (patch)
treee420a1ad98cc2efb2fbd9ccc566bdb131d200b8c /src/main.zig
initial commit
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) {}
+}
+