home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12518.ZIP / ERREXIT.C < prev    next >
C/C++ Source or Header  |  1989-10-12  |  259b  |  17 lines

  1. /* errexit.c RHS 7/15/89
  2.  *
  3.  */
  4. #define INCL_DOS
  5. #include<os2.h>
  6. #include<stdio.h>
  7.  
  8. #include"errexit.h"
  9.  
  10. void error_exit(USHORT err, char *msg)
  11.     {
  12.     printf("OS/2 error %u returned from %s\n",err,msg);
  13.     DosExit(EXIT_PROCESS,0);
  14.     }
  15.  
  16.  
  17.