iopl.c 124 B

12345678910
  1. #include "syscall.h"
  2. #ifdef SYS_iopl
  3. #include <sys/io.h>
  4. int iopl(int level)
  5. {
  6. return syscall(SYS_iopl, level);
  7. }
  8. #endif