GLYLIB
0.3.0b
|
00001 // Function written by B. Lachele Foley, 2007 00002 #include <mylib.h> 00003 //#include "../inc/mylib.h" 00004 /************************** read_eek() *******************************/ 00005 /* This exits if there is a read problem */ 00006 void read_eek(const char *EEK, const char *fdesc){ 00007 printf("Unexpected %s during read of file: %s\n",EEK,fdesc); 00008 printf("Exiting.\n"); 00009 exit(1); 00010 return; 00011 } 00012