home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / LIBSRC.ZOO / libsrc / local / _exit.c next >
Text File  |  1992-02-16  |  155b  |  11 lines

  1. #define INCL_DOSPROCESS
  2. #include <os2.h>
  3.  
  4. ULONG Dos32Exit() asm ("Dos32Exit");
  5.  
  6. volatile void _exit (int status)
  7. {
  8.    Dos32Exit (1, status);
  9. }
  10.  
  11.