19 lines
239 B
C
19 lines
239 B
C
|
#include "stdio.h"
|
||
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
extern VOID sig_die();
|
||
|
|
||
|
int abort_()
|
||
|
#else
|
||
|
extern void sig_die(char*,int);
|
||
|
|
||
|
int abort_(void)
|
||
|
#endif
|
||
|
{
|
||
|
sig_die("Fortran abort routine called", 1);
|
||
|
#ifdef __cplusplus
|
||
|
return 0;
|
||
|
#endif
|
||
|
}
|