1 2 3 4 5 6 7 8 9 10 11
#ifndef SYS_IOCTL_H #define SYS_IOCTL_H #include "syscalls.h" int ioctl(unsigned int fd, unsigned int cmd, void *arg) { return syscall(IOCTL, fd, cmd, arg); } #endif