From 7a361c2e7385c2e670a0e2cc8d9092814ea17253 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 13 Mar 2026 01:05:34 -0400 Subject: not even compiled once but we ball --- ccc.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ccc.h (limited to 'ccc.h') diff --git a/ccc.h b/ccc.h new file mode 100644 index 0000000..6b41480 --- /dev/null +++ b/ccc.h @@ -0,0 +1,12 @@ +#ifndef CCC_H +#define CCC_H +#include +#include + +#define CCC_PANIC { perror("ccc"); exit(1); } +#define CCC_ERROR(format, ...) {\ + fprintf(stderr, "line %ld: " format "\n", LINE __VA_OPT__(,) __VA_ARGS__);\ + exit(1);\ +} + +#endif -- cgit v1.2.3