school

thing1's amazing school repo
Log | Files | Refs | Submodules | README

util.c (185B)


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