aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/glibc/generic/sys-ioctl.cpp
blob: 021d2a3d328a1eed13093fe04da16b6dddf0e4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#include <errno.h>
#include <sys/ioctl.h>

#include <bits/ensure.h>
#include <mlibc/debug.hpp>
#include <mlibc/glibc-sysdeps.hpp>

int ioctl(int fd, unsigned long request, ...) {
	va_list args;
	va_start(args, request);
	int result;
	MLIBC_CHECK_OR_ENOSYS(mlibc::sys_ioctl, -1);
	void *arg = va_arg(args, void *);
	if(int e = mlibc::sys_ioctl(fd, request, arg, &result); e) {
		errno = e;
		return -1;
	}
	return result;
}