X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc.so_src%2Finclude_exp%2Ferrno.h;h=213aeba20a9d375c71be0e5746c2c0095bcd0a8e;hb=8cf9dc88c488ba959a211f1ec653a366d16e1531;hp=c7f5b4912317af088c621dbd6d1f7855b2bb015f;hpb=c34752b7ccc945a70a2d9b1e505aa4a4de43163b;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc.so_src/include_exp/errno.h b/Usermode/Libraries/libc.so_src/include_exp/errno.h index c7f5b491..213aeba2 100644 --- a/Usermode/Libraries/libc.so_src/include_exp/errno.h +++ b/Usermode/Libraries/libc.so_src/include_exp/errno.h @@ -1,3 +1,10 @@ +/** + * Acess2 C Library + * - By John Hodge (thePowersGang) + * + * errno.h + * - Error values and related functions + */ #ifndef _ERRNO_H_ #define _ERRNO_H_ @@ -6,7 +13,7 @@ extern int *libc_geterrno(); #define errno (*libc_geterrno()) -#define strerror(_x) "Unimplemented" +extern const char *strerr(int errnum); #include "errno.enum.h"