home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d03xx / d0353.lha / 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.