mirror of
https://github.com/fluencelabs/musl
synced 2025-05-02 10:32:16 +00:00
10 lines
123 B
C
10 lines
123 B
C
|
#include <sys/io.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
#ifdef SYS_iopl
|
||
|
int iopl(int level)
|
||
|
{
|
||
|
return syscall(SYS_iopl, level);
|
||
|
}
|
||
|
#endif
|