home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / s12628.zip / ERREXIT.C < prev    next >
Text File  |  1990-07-01  |  248b  |  17 lines

  1. /* errexit.c
  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.