diff --git a/include/types/status.h b/include/types/status.h index c371b01..60eec73 100644 --- a/include/types/status.h +++ b/include/types/status.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef _QUARK_ERROR_H +#define _QUARK_ERROR_H enum error_t { @@ -7,9 +8,13 @@ enum error_t EOUTOFBOUNDS, EINVALIDARG, ENOMEM, + ENOTPRESENT, EDOESNTEXIST, EEXISTS, ENOSYSCALL, EPERM, - EBUSY -}; \ No newline at end of file + EBUSY, + EEXITED +}; + +#endif \ No newline at end of file