Rework the ioctl() syscall, clean up arguments

This commit is contained in:
2025-09-09 18:12:33 +02:00
parent 1029db6342
commit ac195acd2f
6 changed files with 38 additions and 77 deletions

View File

@ -4,6 +4,6 @@
#include <stdint.h>
#include "syscall.h"
int32_t SYSCALL3(sys_ioctl, ioh1, cmd1, optsptr1);
int32_t SYSCALL5(sys_ioctl, ioh1, cmd1, arg1, arg2, arg3);
#endif // SYSCALL_IOCTL_H_