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

#ifdef SYS_ioperm
int ioperm(unsigned long from, unsigned long num, int turn_on)
{
	return syscall(SYS_ioperm, from, num, turn_on);
}
#endif