From: Matthias Kruk Date: Sat, 5 Oct 2019 06:00:07 +0000 (+0900) Subject: Add definition for EADDRNOTAVAIL X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=8797ecaffef8cfdcdbb3ef121309bdb2c9ab01ea;p=corax Add definition for EADDRNOTAVAIL --- 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 */