summaryrefslogtreecommitdiff
path: root/src/linux/utimes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/utimes.c')
-rw-r--r--src/linux/utimes.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/linux/utimes.c b/src/linux/utimes.c
new file mode 100644
index 00000000..99a3b2b8
--- /dev/null
+++ b/src/linux/utimes.c
@@ -0,0 +1,13 @@
+#include <sys/time.h>
+#define SYSCALL_STANDALONE
+#include "syscall.h"
+
+int utimes(const char *path, const struct timeval times[2])
+{
+ long ktimes[2];
+ if (times) {
+ ktimes[0] = times[0].tv_sec;
+ ktimes[1] = times[1].tv_sec;
+ }
+ return syscall2(__NR_utime, (long)path, times ? (long)ktimes : 0);
+}