mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
9 lines
219 B
C
9 lines
219 B
C
#include <syslib.h>
|
|
|
|
#include "../../../Kernel/syscalls.h"
|
|
|
|
long DoCtl(uint64_t Command, uint64_t Arg1, uint64_t Arg2, uint64_t Arg3, uint64_t Arg4)
|
|
{
|
|
return syscall5(_KernelCTL, Command, Arg1, Arg2, Arg3, Arg4);
|
|
}
|