mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
9 lines
257 B
C
9 lines
257 B
C
/*
|
|
* errno.c : declares storage for errno, a variable containing the last
|
|
* system error.
|
|
*/
|
|
#include <portab.h>
|
|
|
|
WORD errno = 0; /* set by low level i/o, unset by user (if at all) */
|
|
WORD _errcpm = 0; /* assign BDOS return val when assigning errno */
|