We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 995ed61 commit 2ae9df6Copy full SHA for 2ae9df6
1 file changed
newlib/libc/sys/ps2/sys/utime.h
@@ -0,0 +1,27 @@
1
+#ifndef __UTIME_H__
2
+#define __UTIME_H__
3
+
4
+#include <sys/types.h>
5
6
+#ifdef __cplusplus
7
+extern "C" {
8
+#endif
9
10
+/*
11
+ * POSIX 1003.1b 5.6.6 Set File Access and Modification Times
12
+ */
13
14
+struct utimbuf {
15
+ time_t actime; /* Access time */
16
+ time_t modtime; /* Modification time */
17
+};
18
19
+/* Functions */
20
21
+int utime(const char *path, const struct utimbuf *times);
22
23
24
25
26
27
+#endif /* _SYS_UTIME_H */
0 commit comments