summaryrefslogtreecommitdiff
path: root/util.c
blob: a46f853eafc501208f81d5629079b96e6fdfb865 (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include <stdlib.h>

void eprint(char *msg) {
	fprintf(stderr, "error: %s\n", msg);
	exit(1);
}