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