repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
delete a redundant if in dynamic linker ctor execution loop
[musl.git]
/
src
/
linux
/
iopl.c
blob
835d3d4ed56a5ec8a5b5db0dabbddd21f600e7d0
1
#include
"syscall.h"
2
3
#ifdef SYS_iopl
4
#include <sys/io.h>
5
6
int
iopl
(
int
level
)
7
{
8
return
syscall
(
SYS_iopl
,
level
);
9
}
10
#endif