summary refs log tree commit diff
path: root/err.h
diff options
context:
space:
mode:
authorwrmr2024-11-02 15:10:41 -0500
committerwrmr2024-11-02 15:10:41 -0500
commit58214ec5f982c1b97aadce254c958a5f922c9724 (patch)
treeae64cb697531b0ee619350645e47adf186febfe7 /err.h
parentdf1b0b23569e5244d5b9398802fec6435a995368 (diff)
split main.c in several places, began work on design doc
Diffstat (limited to 'err.h')
-rw-r--r--err.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/err.h b/err.h
new file mode 100644
index 0000000..312795d
--- /dev/null
+++ b/err.h
@@ -0,0 +1,7 @@
+#ifndef ERR_H
+#define ERR_H
+
+void perr(const char *s);
+void efatal(const char *s);
+
+#endif