X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Ferrno.h;h=f6ec953eaf40eb9b97455b2c56c78841b8967e68;hb=HEAD;hp=3652f19f0a63b927811514918ea5979253f9371d;hpb=7536e8afcc3018c4ca2a4aa8f8422cf86a6c188c;p=tpg%2Facess2.git diff --git a/Kernel/include/errno.h b/Kernel/include/errno.h deleted file mode 100644 index 3652f19f..00000000 --- a/Kernel/include/errno.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Acess2 - * errno.h - */ -#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 -}; - -#endif