Sign in
mojo
/
mojo-tools
/
43ebadc2a0d68487739cecbbd3393f852b7d3d7e
/
.
/
fusl
/
src
/
linux
/
iopl.c
blob: 835d3d4ed56a5ec8a5b5db0dabbddd21f600e7d0 [
file
]
#include
"syscall.h"
#ifdef
SYS_iopl
#include
<sys/io.h>
int
iopl
(
int
level
)
{
return
syscall
(
SYS_iopl
,
level
);
}
#endif