blob: 32a6d43bf089f9a08b3021cf8ecd212722f58abb [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include "syscall.h"
2
3#ifdef SYS_ioperm
4#include <sys/io.h>
5
George Kulakowski17e3b042016-02-18 15:59:50 -08006int ioperm(unsigned long from, unsigned long num, int turn_on) {
7 return syscall(SYS_ioperm, from, num, turn_on);
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08008}
9#endif