errno: add EINTR and EAGAIN

This commit is contained in:
Lephenixnoir 2022-02-24 12:48:36 +01:00
parent fa4adc5620
commit 809238e5b8
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 2 additions and 0 deletions

View File

@ -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
}