mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
errno: add EINTR and EAGAIN
This commit is contained in:
parent
fa4adc5620
commit
809238e5b8
1 changed files with 2 additions and 0 deletions
|
@ -26,6 +26,8 @@ extern int errno;
|
|||
#define EISDIR 15 /* File descriptor is a directory. */
|
||||
#define ENOTDIR 16 /* File descriptor is not a directory. */
|
||||
#define ENOTEMPTY 17 /* Directory is not empty. */
|
||||
#define EINTR 18 /* Interrupted system call. */
|
||||
#define EAGAIN 19 /* Resource temporarily unavailable. */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue