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

Michael Jones via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 15:25:51 PDT 2025


================
@@ -5,5 +5,10 @@ macros: []
 types:
   - type_name: struct_timeval
 enums: []
-functions: []
 objects: []
+functions:
+  - name: utimes
+    return_type: int
+    arguments:
+      - type: ptr<const char>
+      - type: ptr<const struct timeval>
----------------
michaelrj-google wrote:

The format is the same as how the type is written in C.
```suggestion
      - type: const char*
      - type: const struct timeval*
```

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


More information about the llvm-commits mailing list