Remove single occurance of die, and then remove die itself.
This commit is contained in:
parent
9bb28772ed
commit
4664fba970
11
util.c
11
util.c
|
@ -28,17 +28,6 @@
|
|||
|
||||
#include "util.h"
|
||||
|
||||
void
|
||||
die(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, fmt);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
va_end(ap);
|
||||
abort();
|
||||
}
|
||||
|
||||
void
|
||||
eprint(const char *fmt, ...)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue