This commit is contained in:
2025-08-05 22:49:34 +02:00
parent f8399152d4
commit f8f00cc608
12 changed files with 1838 additions and 25 deletions

12
kernel/errors.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef ERRORS_H_
#define ERRORS_H_
#include <types.h>
#define E_OK 0
typedef int32 Error;
#define E_ISOK(e) ((e) == (E_OK))
#endif // ERRORS_H_