X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Ferrno.h;h=f6ec953eaf40eb9b97455b2c56c78841b8967e68;hb=2462d860630674d10d554f86aa669163f6f2db6b;hp=3652f19f0a63b927811514918ea5979253f9371d;hpb=48743e39650eb1ef988380e9d95f27fd40d3a9ce;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/errno.h b/KernelLand/Kernel/include/errno.h index 3652f19f..f6ec953e 100644 --- a/KernelLand/Kernel/include/errno.h +++ b/KernelLand/Kernel/include/errno.h @@ -5,26 +5,6 @@ #ifndef _ERRNO_H #define _ERRNO_H -enum eErrorNums -{ - EOK, - - ENOSYS, // Invalid Instruction - EINVAL, // Invalid Paramater - ENOMEM, // No free memory - EACCES, // Not permitted - 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 - - EALREADY, // Operation was a NOP - EINTERNAL, // Internal Error - - NUM_ERRS -}; +#include "../../../Usermode/Libraries/libc.so_src/include_exp/errno.enum.h" #endif