Simple VFS layer

This commit is contained in:
2025-08-15 01:41:11 +02:00
parent b470fb03da
commit d91330ba73
16 changed files with 403 additions and 2 deletions

9
kernel/errors.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef ERRORS_H_
#define ERRORS_H_
#define E_OK 0
#define E_NOMEMORY -1
#define E_UNKNOWN_FSTYPE -2
#define E_NOENTRY -3
#endif // ERRORS_H_