commit 7077470542bb174d9169109e3c071d365c92f3f0
Author: Quentin Rameau <[email protected]>
AuthorDate: Tue Feb 21 13:57:43 2017 +0100
Commit: Quentin Rameau <[email protected]>
CommitDate: Tue Feb 21 19:40:45 2017 +0100
[libc] Complete errno.h
diff --git a/libc/include/errno.h b/libc/include/errno.h
index ffb42ca..5f14aa6 100644
--- 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