From 4508fd2c4ee3171bdc1bffb7e53ecda8290292ef Mon Sep 17 00:00:00 2001
From: Connor Lane Smith <cls@lubutu.com>
Date: Thu, 24 Jun 2010 17:44:35 +0100
Subject: moved draw.c to libdraw.a

---
 draw/eprint.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 draw/eprint.c

(limited to 'draw/eprint.c')

diff --git a/draw/eprint.c b/draw/eprint.c
new file mode 100644
index 0000000..3094b61
--- /dev/null
+++ b/draw/eprint.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include "draw.h"
+
+const char *progname;
+
+void
+eprint(const char *fmt, ...) {
+	va_list ap;
+
+	fprintf(stderr, "%s: ", progname);
+	va_start(ap, fmt);
+	vfprintf(stderr, fmt, ap);
+	va_end(ap);
+	exit(EXIT_FAILURE);
+}
-- 
cgit v1.2.3