musl-tcc/src/linux/iopl.c

11 lines
124 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include "syscall.h"
#ifdef SYS_iopl
#include <sys/io.h>
int iopl(int level)
{
return syscall(SYS_iopl, level);
}
#endif