home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / zc.lzh / ZC / ZCSRC.LZH / IOLib / misc / abort.c next >
Encoding:
C/C++ Source or Header  |  1989-06-10  |  88 b   |  8 lines

  1. abort()
  2. {
  3.     extern long Output(), Write();
  4.  
  5.     Write( Output(), "^C\n", 4L);
  6.     exit( 3 );
  7. }
  8.