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

@ -47,6 +47,7 @@ SyscallFn SYSCALL_TABLE[SYSCALLS_MAX] = {
[SYS_FS_STAT] = &sys_fs_stat,
[SYS_FS_FETCHDIRENT] = &sys_fs_fetchdirent,
[SYS_FS_MKDIR] = &sys_fs_mkdir,
[SYS_FS_DELETE] = &sys_fs_delete,
[SYS_DEV_GETHANDLE] = &sys_dev_gethandle,
[SYS_DEV_LISTSIZE] = &sys_dev_listsize,
[SYS_DEV_STAT] = &sys_dev_stat,