home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 122.lha / Arp_v1.1 / Libraries / Manx_SRC / arpexit.c < prev    next >
Encoding:
Text File  |  1986-11-21  |  145 b   |  10 lines

  1. /* Not really arp specific, but need to prevent horrendous linker errors */
  2. int (*cls_)();
  3.  
  4. exit(code)
  5. {
  6.     if (cls_)
  7.         (*cls_)();
  8.     _exit(code);
  9. }
  10.