Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
linux
/
ioperm.c
blob: 32a6d43bf089f9a08b3021cf8ecd212722f58abb [
file
] [
log
] [
blame
]
#include
"syscall.h"
#ifdef
SYS_ioperm
#include
<sys/io.h>
int
ioperm
(
unsigned
long
from
,
unsigned
long
num
,
int
turn_on
)
{
return
syscall
(
SYS_ioperm
,
from
,
num
,
turn_on
);
}
#endif