From 17face3633686e374aa0859271ccf462a48e60aa Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sun, 4 Feb 2024 16:46:20 -0800 Subject: Rewrite the bytecode interpreter in Rust. --- bytecode/panic.c | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 bytecode/panic.c (limited to 'bytecode/panic.c') diff --git a/bytecode/panic.c b/bytecode/panic.c deleted file mode 100644 index db2b6f8..0000000 --- a/bytecode/panic.c +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include -#include - -#include "panic.h" - -void panicf(const char *format, ...) -{ - va_list ap; - va_start(ap, format); - vfprintf(stderr, format, ap); - va_end(ap); - - exit(1); -} -- cgit v1.3.1