[libc] [llvm] [libc] Implemented utimes (Issue #133953) (PR #134167)
Michael Jones via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 16:38:42 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:
these includes need a bit of cleaning.
`cerrno` is a C++ header and not allowed it doesn't seem like it's used anyways.
`sys/stat.h` and `fcntl.h` also seem unused.
`sys/syscall.h` is fine.
https://github.com/llvm/llvm-project/pull/134167
More information about the llvm-commits
mailing list