00001 /* 00002 * File: crash.h 00003 * Summary: Platform specific crash handling functions. 00004 * Written by: Matthew cline 00005 */ 00006 00007 #ifndef CRASH_H 00008 #define CRASH_H 00009 00010 #include <stdio.h> 00011 00012 void init_crash_handler(); 00013 void dump_crash_info(FILE* file); 00014 void write_stack_trace(FILE* file, int ignore_count); 00015 00016 #endif