blob: 6fdb8ad333fc1a6fe1f03e0e6145073a7bdecae1 (
plain)
1
2
3
4
5
6
7
8
|
#include <stdlib.h>
#include <stdio.h>
//# a simple die function to bring down the program in the case of an error
void die(char *msg){
fprintf(stderr, "zpy: %s\n", msg);
exit(1);
}
|