home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff353.lzh / AztecArp / exit.c < prev    next >
Text File  |  1990-06-02  |  151b  |  12 lines

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