[libc-commits] [libc] [libc] implement pathconf/fpathconf (PR	#87165)
    Schrodinger ZHU Yifan via libc-commits 
    libc-commits at lists.llvm.org
       
    Thu May 16 21:15:51 PDT 2024
    
    
  
================
@@ -0,0 +1,28 @@
+//===-- Linux implementation of pathconf ----------------------------------===//
+//
+// 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/__support/OSUtil/syscall.h" // For internal syscall function.
+#include "src/__support/common.h"
+#include "src/__support/macros/sanitizer.h" // for MSAN_UNPOISON
----------------
SchrodingerZhu wrote:
this should not be needed
https://github.com/llvm/llvm-project/pull/87165
    
    
More information about the libc-commits
mailing list