summary refs log tree commit diff
path: root/voodoo.hc
diff options
context:
space:
mode:
authorja <ja@echidna.local>2026-04-23 05:07:34 +0000
committerja <ja@echidna.local>2026-04-23 05:07:34 +0000
commit61d3a5a2d4d2919b30e1c268c3d4166d8f375972 (patch)
tree3a483b15ea83d88813538e6dd502ad75c6fbb0b7 /voodoo.hc
parent3903f966ac06e454393451ca21afcd219576de01 (diff)
files HEAD trunk
Diffstat (limited to 'voodoo.hc')
-rw-r--r--voodoo.hc10
1 files changed, 10 insertions, 0 deletions
diff --git a/voodoo.hc b/voodoo.hc
new file mode 100644
index 0000000..126db88
--- /dev/null
+++ b/voodoo.hc
@@ -0,0 +1,10 @@
+I32 voodoo(I32 testval)
+{
+	if (testval == 1) {
+		return 0;
+	} else if (testval == 0) {
+		return 1;
+	}
+
+	return 69;
+}