[libc-commits] [libc] [libc] Implement faccessat (PR #161065)
Marcell Leleszi via libc-commits
libc-commits at lists.llvm.org
Thu Oct 2 11:09:00 PDT 2025
================
@@ -0,0 +1,119 @@
+//===-- Unittests for faccessat -------------------------------------------===//
+//
+// 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/fcntl/open.h"
+#include "src/sys/stat/mkdir.h"
+#include "src/unistd/close.h"
+#include "src/unistd/faccessat.h"
+#include "src/unistd/rmdir.h"
+#include "src/unistd/symlink.h"
+#include "src/unistd/unlink.h"
+#include "src/unistd/unlinkat.h"
----------------
mleleszi wrote:
Done
https://github.com/llvm/llvm-project/pull/161065
More information about the libc-commits
mailing list