You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
329 B
18 lines
329 B
/* 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); |
|
}
|
|
|