From 8797ecaffef8cfdcdbb3ef121309bdb2c9ab01ea Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sat, 5 Oct 2019 15:00:07 +0900 Subject: [PATCH] Add definition for EADDRNOTAVAIL --- include/corax/errno.h | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/include/corax/errno.h b/include/corax/errno.h index 903c8f6..605d082 100644 --- a/include/corax/errno.h +++ b/include/corax/errno.h @@ -19,15 +19,16 @@ #ifndef __CORAX_ERRNO_H #define __CORAX_ERRNO_H -#define EINVAL 1 -#define ENOSYS 2 -#define EALREADY 3 -#define EAGAIN 4 -#define ENOMEM 5 -#define EFAULT 6 -#define EAFNOSUPPORT 7 -#define EMFILE 8 -#define EBADF 9 -#define ENFILE 10 +#define EINVAL 1 +#define ENOSYS 2 +#define EALREADY 3 +#define EAGAIN 4 +#define ENOMEM 5 +#define EFAULT 6 +#define EAFNOSUPPORT 7 +#define EMFILE 8 +#define EBADF 9 +#define ENFILE 10 +#define EADDRNOTAVAIL 11 #endif /* __CORAX_ERRNO_H */ -- 2.47.3