summaryrefslogtreecommitdiff
path: root/src/linux/utimes.c
blob: 99a3b2b852007da0bbabf4c1b4e0b032eb49b171 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}