[libc-commits] [libc] [libc] implement ioctl (PR #85890)

Nhat Nguyen via libc-commits libc-commits at lists.llvm.org
Wed Mar 27 18:01:04 PDT 2024


================
@@ -0,0 +1,39 @@
+//===---------- Linux implementation of the POSIX ioctl function --------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "src/sys/ioctl/ioctl.h"
+
+#include "src/__support/OSUtil/syscall.h" // For internal syscall function.
+#include "src/__support/common.h"
+
----------------
changkhothuychung wrote:

removed the whitespace

https://github.com/llvm/llvm-project/pull/85890


More information about the libc-commits mailing list