00001 /* ERROR.H */ 00002 00003 #ifndef _ERROR_H_ 00004 #define _ERROR_H_ 00005 00006 void error(char *calling_fn,char *message); 00007 /* 00008 * this function prints out a fatal error message and exits 00009 */ 00010 00011 void warn(char *func, char *msg); 00012 /* 00013 * This function prints out a warning but allows the program to continue 00014 */ 00015 00016 #endif