home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
msysjour
/
vol05
/
04
/
pmaccess
/
errexit.c
< prev
next >
Wrap
Text File
|
1990-07-01
|
248b
|
17 lines
/* errexit.c
*
*/
#define INCL_DOS
#include<os2.h>
#include<stdio.h>
#include"errexit.h"
void error_exit(USHORT err, char *msg)
{
printf("OS/2 error %u returned from %s\n",err,msg);
DosExit(EXIT_PROCESS,0);
}