4 * Revision 1.1 2001/04/04 05:43:38 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.2 1999/11/26 12:52:25 bnv
8 * Changed: To use new macros
10 * Revision 1.1 1998/07/02 17:18:00 bnv
18 # error "Lstderr: should not be included in the CE version"
20 /* ------------------ Lstderr ------------------- */
22 Lstderr( const int errno
, const int subno
, ... )
30 Lerrortext(&errmsg
,errno
,subno
,&ap
);
34 fprintf(STDERR
,"Ooops unknown error %d.%d!!!\n",errno
,subno
);
38 fprintf(STDERR
,"Error %d: %s\n",errno
,LSTR(errmsg
));
40 fprintf(STDERR
,"Error %d.%d: %s\n",errno
,subno
,LSTR(errmsg
));