summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code2/util.c
blob: 5cda33ef908a9e0d42ffc6b93d802c42d5fce64e (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <stdio.h>

void die(char *msg){
	fprintf(stderr, "zpy: %s\n", msg);
	exit(1);

}