mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
51295a4d3e
Submitted-By: Kent Vander Velden <graphix@iastate.edu>
16 lines
213 B
C
16 lines
213 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);
|
|
return 0;
|
|
}
|