| 1234567891011121314151617181920212223 | #include "stdio.h"#include "f2c.h"#ifdef __cplusplusextern "C" {#endif#ifdef KR_headersextern VOID sig_die();int abort_()#elseextern void sig_die(const char*,int);int abort_(void)#endif{sig_die("Fortran abort routine called", 1);return 0;	/* not reached */}#ifdef __cplusplus}#endif
 |