From 74d918b968adbb340694667a90cc0476cb5e26c1 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sat, 26 Oct 2019 16:22:49 +0900 Subject: [PATCH] Add definitions for ENOTSUP, EOPNOTSUPP, and ENOENT --- include/corax/errno.h | 3 +++ 1 file changed, 3 insertions(+) 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 */ -- 2.47.3