ioperm.c 184 B

12345678910
  1. #include "syscall.h"
  2. #ifdef SYS_ioperm
  3. #include <sys/io.h>
  4. int ioperm(unsigned long from, unsigned long num, int turn_on)
  5. {
  6. return syscall(SYS_ioperm, from, num, turn_on);
  7. }
  8. #endif