Kernel - Imported userland strtoi file (and other minor changes)
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / include_exp / errno.enum.h
diff --git a/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h b/Usermode/Libraries/libc.so_src/include_exp/errno.enum.h
new file mode 100644 (file)
index 0000000..090b06b
--- /dev/null
@@ -0,0 +1,25 @@
+
+enum {
+       EOK,
+       ENOSYS, // Invalid Instruction
+       EINVAL, // Invalid Paramater
+       ENOMEM, // No free memory
+       EACCES, // Not permitted
+       EBUSY,  // Resource is busy
+       ERANGE, // Value out of range
+       ENOTFOUND,      // Item not found
+       EREADONLY,      // Read only
+       ENOTIMPL,       // Not implemented
+       ENOENT, // No entry?
+       EEXIST, // Already exists
+       ENFILE, // Too many open files
+       ENOTDIR,        // Not a directory
+       EIO,    // IO Error
+       EINTR,  // Operation interrupted (signal)
+       
+       EALREADY,       // Operation was a NOP
+       EINTERNAL,      // Internal Error
+       
+       NUM_ERRNO
+};
+

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