zig/libc/musl/src/linux/ioperm.c
Andrew Kelley 62486c35a4
ability to build musl from source
bundles musl 1.1.21

See #514
2019-03-12 17:32:32 -04:00

11 lines
184 B
C

#include "syscall.h"
#ifdef SYS_ioperm
#include <sys/io.h>
int ioperm(unsigned long from, unsigned long num, int turn_on)
{
return syscall(SYS_ioperm, from, num, turn_on);
}
#endif