Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
2df8b1d806c3e1fd4b6b10e13794855a93fe6628
/
.
/
src
/
linux
/
ioperm.c
blob: 08c6d8b86ca1b6f06ba54854a6898d7ea4a1ebc5 [
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