12345678910111213141516171819202122 |
- #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
|