mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-05 02:07:22 +00:00
Add EILSEQ errno value.
This is required by C95 and later; it may be set by character/string conversion functions. Note that the value of 12 conflicts with GNO's existing definition of EPERM. This should not cause much trouble, but GNO could potentially define its own different value for EILSEQ, with the GNO version of ORCALib adjusted accordingly.
This commit is contained in:
parent
47478604af
commit
bf2c1f2266
@ -25,6 +25,7 @@
|
||||
#define EACCESS 9 /* alias for EACCES */
|
||||
#define EEXIST 10 /* the file exists */
|
||||
#define ENOSPC 11 /* the file is too large */
|
||||
#define EILSEQ 12 /* encoding error */
|
||||
|
||||
extern int errno;
|
||||
#define errno errno
|
||||
|
Loading…
Reference in New Issue
Block a user