3 * - By John Hodge (thePowersGang)
6 * - Error values and related functions
11 // TODO: Fully implement errno.h, make sure it matches the kernel one
13 extern int *libc_geterrno(void);
14 #define errno (*libc_geterrno())
16 extern const char *strerr(int errnum);
18 #include "errno.enum.h"