summaryrefslogtreecommitdiff
path: root/Libraries/LibC/ioctl.cpp
blob: c2ac90524abfc5ba339dd3199f561fd012075aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <Kernel/Syscall.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <sys/ioctl.h>

extern "C" {

int ioctl(int fd, unsigned request, ...)
{
    va_list ap;
    va_start(ap, request);
    unsigned arg = va_arg(ap, unsigned);
    int rc = syscall(SC_ioctl, fd, request, arg);
    __RETURN_WITH_ERRNO(rc, rc, -1);
}
}