home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / f_2_c / libf77 / abort_.c next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  132 b   |  10 lines

  1. #include "stdio.h"
  2. #include "f2c.h"
  3.  
  4. extern VOID sig_die();
  5.  
  6. VOID abort_()
  7. {
  8. sig_die("Fortran abort routine called", 1);
  9. }
  10.