commit 7077470542bb174d9169109e3c071d365c92f3f0 parent c21d1c13987c7082c5157726dcfa4f9715773c5d Author: Quentin Rameau <quinq@fifth.space> Date: Tue, 21 Feb 2017 13:57:43 +0100 [libc] Complete errno.h Diffstat:
M | libc/include/errno.h | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/libc/include/errno.h b/libc/include/errno.h @@ -2,6 +2,10 @@ #ifndef _ERRNO_H #define _ERRNO_H +#define EDOM 1 +#define EILSEQ 2 +#define ERANGE 3 + extern int errno; #endif