From 36b372f0590260870f2683c89983c439a0f2391e Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Wed, 13 Nov 2019 16:34:40 +0900 Subject: [PATCH] Add definitions for EPERM and EACCES --- include/corax/errno.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/corax/errno.h b/include/corax/errno.h index 8fa6893..538573e 100644 --- a/include/corax/errno.h +++ b/include/corax/errno.h @@ -33,5 +33,7 @@ #define ENOTSUP 12 #define EOPNOTSUPP 13 #define ENOENT 14 +#define EPERM 15 +#define EACCES 16 #endif /* __CORAX_ERRNO_H */ -- 2.47.3