Usermode/libc - More errno values and signal symbolic names
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.h
index ea352f3..c7f5b49 100644 (file)
@@ -3,26 +3,11 @@
 
 // TODO: Fully implement errno.h, make sure it matches the kernel one
 
-extern int     _errno;
-#define        errno   _errno
+extern int     *libc_geterrno();
+#define        errno   (*libc_geterrno())
 
 #define strerror(_x)   "Unimplemented"
 
-enum
-{
-       EOK,
-       EINVAL,
-       ERANGE,
-       ENODEV,
-       EBADF,
-       EINTR,
-       EAGAIN,
-       ENOMEM,
-
-       EADDRNOTAVAIL,
-       EINPROGRESS,
-
-       E_LAST
-};
+#include "errno.enum.h"
 
 #endif

UCC git Repository :: git.ucc.asn.au