user: implement mlibc as the libc, finally.
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
This commit is contained in:
@@ -0,0 +1,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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user