shithub: scc

Download patch

ref: 8a373bda8ce41c144488593ec6ef0550c305e7bc
parent: c6c4762d155cc69863e1dd20176095bfebd901d1
author: Quentin Rameau <quinq@fifth.space>
date: Tue Feb 21 08:57:43 EST 2017

[libc] Complete errno.h

--- 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