add ioperm/iopl syscalls
[musl] / src / linux / ioperm.c
1 #include <sys/io.h>
2 #include "syscall.h"
3
4 #ifdef SYS_ioperm
5 int ioperm(unsigned long from, unsigned long num, int turn_on)
6 {
7         return syscall(SYS_ioperm, from, num, turn_on);
8 }
9 #endif