From 26b9f3de0ffe471e5335b07454147457e373c037 Mon Sep 17 00:00:00 2001 From: Connor Lane Smith Date: Wed, 30 Jun 2010 01:36:15 +0100 Subject: libdraw now has own repo --- draw/eprint.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 draw/eprint.c (limited to 'draw/eprint.c') diff --git a/draw/eprint.c b/draw/eprint.c deleted file mode 100644 index 3094b61..0000000 --- a/draw/eprint.c +++ /dev/null @@ -1,18 +0,0 @@ -/* See LICENSE file for copyright and license details. */ -#include -#include -#include -#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-54-g00ecf