X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Ferrno.h;h=f6ec953eaf40eb9b97455b2c56c78841b8967e68;hb=d7dcea0e5a8df0f479e99f168a10b9a9535c7ad6;hp=3652f19f0a63b927811514918ea5979253f9371d;hpb=51ab5f489bc356940c95cc936fd0508e8f07ea97;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