Sign in
cobalt
/
cobalt
/
cd166d4770b32ef791e59f9f89e70d032f3409d2
/
.
/
third_party
/
musl
/
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