freebsd-dev/contrib/libf2c/libF77/abort_.c

17 lines
243 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include <stdio.h>
#include "f2c.h"
#ifdef KR_headers
extern VOID sig_die();
int G77_abort_0 ()
#else
extern void sig_die(char*,int);
int G77_abort_0 (void)
#endif
{
sig_die("Fortran abort routine called", 1);
1999-09-19 05:59:11 +00:00
return 0; /* not reached */
1999-09-18 10:51:31 +00:00
}