Usermode/libc - Add C99 errno values, fix compile error in strtoi
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.enum.h
index f943654..5813cc5 100755 (executable)
@@ -1,13 +1,16 @@
 
 enum libc_eErrorNumbers {
        EOK,
+       EDOM,   // (C99) Value out of domain
+       EILSEQ, // (C99) Illegal multi-byte sequence
+       ERANGE, // (C99) Value out of range
+       
        ENOSYS, // Invalid Instruction
        EINVAL, // Invalid Paramater
        EBADF,  // Bad FD
        ENOMEM, // No free memory
        EACCES, // Not permitted
        EBUSY,  // Resource is busy
-       ERANGE, // Value out of range
        ENOTFOUND,      // Item not found
        EROFS,  // Read only
        ENOTIMPL,       // Not implemented
@@ -29,6 +32,7 @@ enum libc_eErrorNumbers {
        EALREADY,       // Operation was a NOP
        
        EFBIG,  // File too large
+       E2BIG,  // Argument list too large
 
        // psockets
        EAFNOSUPPORT,   

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