summaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2022-09-08 11:11:06 -0400
committerJakob Kaivo <jkk@ung.org>2022-09-08 11:11:06 -0400
commitfd528d27b11f1d85dbf6afcd65b6bb4140e56070 (patch)
treeaa92db77886e45ab1cbd0616eeaefa1129d98556 /cc.h
parent5a8d69ea869636e29807955d621fa45d8a21a8d8 (diff)
handle predefined and command line macro definitions
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cc.h b/cc.h
new file mode 100644
index 0000000..2b122a7
--- /dev/null
+++ b/cc.h
@@ -0,0 +1,7 @@
+#ifndef CC_H
+#define CC_H
+#include <stdint.h>
+
+void error(const char *file, uintmax_t line, const char *fmt, ...);
+
+#endif