summaryrefslogtreecommitdiff
path: root/lib/libc/sys/io_uring/io_uring_register.c
blob: bee2355f95fe9fb6a8214f4bce44310a211fb70e (plain)
1
2
3
4
5
6
7
#include <syscall.h>

int io_uring_register(unsigned int fd, unsigned int opcode, void *arg,
		      unsigned int nr_args)
{
	return syscall(io_uring_register, fd, opcode, arg, nr_args);
}