summaryrefslogtreecommitdiff
path: root/lib/libc/sys/io_uring/io_uring_register.c
blob: bbbcb9ee481625c8f50e61cf61b58dec0f23f98b (plain)
1
2
3
4
5
6
#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);
}