about summary refs log tree commit diff
path: root/src/misc/ioctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/ioctl.c')
-rw-r--r--src/misc/ioctl.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/misc/ioctl.c b/src/misc/ioctl.c
new file mode 100644
index 00000000..808b7c9c
--- /dev/null
+++ b/src/misc/ioctl.c
@@ -0,0 +1,13 @@
+#include <sys/ioctl.h>
+#include <stdarg.h>
+#include "syscall.h"
+
+int ioctl(int fd, int req, ...)
+{
+	void *arg;
+	va_list ap;
+	va_start(ap, req);
+	arg = va_arg(ap, void *);
+	va_end(ap);
+	return syscall3(__NR_ioctl, fd, req, (long)arg);
+}