Add fs_delete() syscall

This commit is contained in:
2025-10-15 20:10:26 +02:00
parent 371d777a7c
commit ac6ebce112
4 changed files with 23 additions and 0 deletions

View File

@ -12,5 +12,6 @@ int32_t SYSCALL4(sys_fs_read, fsh1, buffer1, len1, off1);
int32_t SYSCALL2(sys_fs_stat, opath1, fsstat1);
int32_t SYSCALL3(sys_fs_fetchdirent, opath1, direntbuf1, idx1);
int32_t SYSCALL1(sys_fs_mkdir, opath1);
int32_t SYSCALL1(sys_fs_delete, opath1);
#endif // SYSCALL_FS_H_