mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-02 19:29:21 +00:00
Add EACCES as another name for EACCESS in <errno.h>.
The EACCES name is used in the ORCA/C manual, and also matches the name in POSIX and GNO. EACCESS is retained as an alias for compatibility.
This commit is contained in:
parent
2d43074d5a
commit
a359543769
@ -21,7 +21,8 @@
|
|||||||
#define EINVAL 6 /* Invalid argument */
|
#define EINVAL 6 /* Invalid argument */
|
||||||
#define EBADF 7 /* bad file descriptor */
|
#define EBADF 7 /* bad file descriptor */
|
||||||
#define EMFILE 8 /* too many files are open */
|
#define EMFILE 8 /* too many files are open */
|
||||||
#define EACCESS 9 /* access bits prevent the operation */
|
#define EACCES 9 /* access bits prevent the operation */
|
||||||
|
#define EACCESS 9 /* alias for EACCES */
|
||||||
#define EEXIST 10 /* the file exists */
|
#define EEXIST 10 /* the file exists */
|
||||||
#define ENOSPC 11 /* the file is too large */
|
#define ENOSPC 11 /* the file is too large */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user