Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
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