From 3860d330a370b2cb2cf1a1b26fa91907a9748245 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 4 Jan 2024 22:01:50 -0800 Subject: first commit --- macros.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 macros.c (limited to 'macros.c') diff --git a/macros.c b/macros.c new file mode 100644 index 0000000..e17e113 --- /dev/null +++ b/macros.c @@ -0,0 +1,8 @@ +#include "macros.h" +#include +#include + +void die(char *message) { + fprintf(stderr, "ERROR: %s\n", message); + exit(1); +} -- cgit