summaryrefslogtreecommitdiffstats
path: root/lib/libF77/abort_.c
blob: 96b960de87798c26c4d1b82fd2b60ae2b3c5fd26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}
OpenPOWER on IntegriCloud