You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
304 B
C
23 lines
304 B
C
#include "stdio.h"
|
|
#include "f2c.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef KR_headers
|
|
extern VOID sig_die();
|
|
|
|
int abort_()
|
|
#else
|
|
extern void sig_die(const char*,int);
|
|
|
|
int abort_(void)
|
|
#endif
|
|
{
|
|
sig_die("Fortran abort routine called", 1);
|
|
return 0; /* not reached */
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|