[libc] [llvm] [libc] Implemented utimes (Issue #133953) (PR #134167)

Michael Jones via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 17:04:31 PDT 2025


================
@@ -0,0 +1,80 @@
+//===-- Linux implementation of utimes -------------------------------------===//
+//
+// 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/time/utimes.h"
+
+#include "hdr/types/struct_timeval.h"
+
+#include "src/__support/OSUtil/syscall.h"
+#include "src/__support/common.h"
+
+#include "src/errno/libc_errno.h"
+
+#include <cerrno>
+#include <sys/syscall.h>
+#include <sys/stat.h>
+#include <fcntl.h>
----------------
michaelrj-google wrote:

ah, in that case it should be `"hdr/fcntl_macros.h"`, which is the proxy header for the macros from `fcntl`.

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


More information about the llvm-commits mailing list