home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 446.lha / AztecArp / Sources.LZH / exit.c < prev    next >
Encoding:
Text File  |  1990-08-01  |  200 b   |  19 lines

  1. void arpexit(int code,ULONG fail);
  2. int (*cls_)();
  3. void exit(int code);
  4.  
  5. void
  6. exit(int code)
  7. {
  8.     arpexit(code,0);
  9. }
  10.  
  11. void
  12. arpexit(int code,ULONG fail)
  13. {
  14.     if (cls_)
  15.         (*cls_)();
  16.  
  17.     _arpexit(code,fail);
  18. }
  19.