summaryrefslogtreecommitdiff
path: root/src/linux/iopl.c
blob: 5a626e16ea090ff962475dd213cefe11113418f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <sys/io.h>
#include "syscall.h"

#ifdef SYS_iopl
int iopl(int level)
{
	return syscall(SYS_iopl, level);
}
#endif