#ifndef SYS_IOCTL_H #define SYS_IOCTL_H #include "syscalls.h" static int ioctl(unsigned int fd, unsigned int cmd, void *arg) { return syscall(IOCTL, fd, cmd, arg); } #endif