Kernel/LibC/Userspace: Implement mkdir and creat

Touch now uses creat insteadd of open with O_CREAT flag
This commit is contained in:
2023-10-25 19:45:18 +03:00
parent 1f794e4ac0
commit 8bb47aee02
11 changed files with 83 additions and 10 deletions

View File

@@ -56,6 +56,8 @@ __BEGIN_DECLS
#define SYS_TTY_CTRL 53
#define SYS_POWEROFF 54
#define SYS_CHMOD 55
#define SYS_CREATE 56 // creat, mkfifo
#define SYS_CREATE_DIR 57 // mkdir
__END_DECLS