Usermode/libc - Fixed some slight errno issues
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.h
index cbe8749..a808379 100644 (file)
@@ -1,12 +1,19 @@
-#ifndef _ERRNO_H_
-#define _ERRNO_H_
+/**
+ * Acess2 C Library
+ * - By John Hodge (thePowersGang)
+ *
+ * errno.h
+ * - Error values and related functions
+ */
+#ifndef _LIBC_ERRNO_H_
+#define _LIBC_ERRNO_H_
 
 // TODO: Fully implement errno.h, make sure it matches the kernel one
 
-extern int     _errno;
-#define        errno   _errno
+extern int     *libc_geterrno(void);
+#define        errno   (*libc_geterrno())
 
-#define strerror(_x)   "Unimplemented"
+extern const char      *strerror(int errnum);
 
 #include "errno.enum.h"
 

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