wireup linux/name_to_handle_at and name_to_handle_at syscalls
[musl.git] / src / linux / iopl.c
blob835d3d4ed56a5ec8a5b5db0dabbddd21f600e7d0
1 #include "syscall.h"
3 #ifdef SYS_iopl
4 #include <sys/io.h>
6 int iopl(int level)
8 return syscall(SYS_iopl, level);
10 #endif