aboutsummaryrefslogtreecommitdiffstats
path: root/support.c
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-20 18:01:48 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-20 18:01:48 -0400
commit95901f3a5fa0ec18128030c915d1d94bade5de94 (patch)
tree53c66d5230fa398688c1a5fefcd2e266ba577db6 /support.c
parentc546646cd46e9b523c3457fa6e867951ac37daba (diff)
global env; alloca locals
kinda messy
Diffstat (limited to 'support.c')
-rw-r--r--support.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support.c b/support.c
index b400a05..e079de6 100644
--- a/support.c
+++ b/support.c
@@ -10,7 +10,7 @@ void emit()
putchar(*(&stack + --sp));
}
-void print()
+void _print()
{
printf("%d\n", *(&stack + --sp));
}