Move shared headers out to include/

This commit is contained in:
2026-02-22 00:05:26 +01:00
parent 821ad9511a
commit 502cfa7335
29 changed files with 33 additions and 33 deletions

19
include/status.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef _M_STATUS_H
#define _M_STATUS_H
#define ST_OK 0
#define ST_SYSCALL_NOT_FOUND 1
#define ST_UNALIGNED 2
#define ST_OOM_ERROR 3
#define ST_NOT_FOUND 4
#define ST_BAD_ADDRESS_SPACE 5
#define ST_PERMISSION_ERROR 6
#define ST_BAD_RESOURCE 7
#define ST_BAD_DEVICE_OP 8
#define ST_EXISTS 9
#define ST_OOB_ERROR 10
#define ST_BAD_PATH 11
#define ST_EXEC_ERROR 12
#define ST_MOUNT_ERROR 13
#endif // _M_STATUS_H