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