Files
my-os-project2/kernel/errors.h
2025-08-05 22:49:34 +02:00

13 lines
150 B
C

#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_