summaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2019-02-19 05:33:04 +0100
committerQuentin Rameau <quinq@fifth.space>2020-11-01 16:59:11 +0100
commit8d5e2b3a40a86d463d666cbf61906cf22febde34 (patch)
treec2edf2220d3c05f5979281fced8a9726bd4f4a28 /common.c
parent21fcbc004e16a9de46424fb21ad9c32270779a0d (diff)
Remove common
Diffstat (limited to 'common.c')
-rw-r--r--common.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/common.c b/common.c
deleted file mode 100644
index 42662ed..0000000
--- a/common.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-void
-die(const char *errstr, ...)
-{
- va_list ap;
-
- va_start(ap, errstr);
- vfprintf(stderr, errstr, ap);
- va_end(ap);
- exit(1);
-}
-