From: Matthias Kruk Date: Sat, 26 Oct 2019 07:22:49 +0000 (+0900) Subject: Add definitions for ENOTSUP, EOPNOTSUPP, and ENOENT X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=74d918b968adbb340694667a90cc0476cb5e26c1;p=corax Add definitions for ENOTSUP, EOPNOTSUPP, and ENOENT --- diff --git a/include/corax/errno.h b/include/corax/errno.h index 605d082..8fa6893 100644 --- a/include/corax/errno.h +++ b/include/corax/errno.h @@ -30,5 +30,8 @@ #define EBADF 9 #define ENFILE 10 #define EADDRNOTAVAIL 11 +#define ENOTSUP 12 +#define EOPNOTSUPP 13 +#define ENOENT 14 #endif /* __CORAX_ERRNO_H */