Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
linux
iopl.c
pretty
plain
permalink
blame
history
•
10 lines
•
124 B
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