blob: d761c95acb8db068d5d97b6c70a0a00de61417f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#define _GNU_SOURCE
#include <sys/time.h>
#include <sys/stat.h>
#include <errno.h>
#include "syscall.h"
int __futimesat(int dirfd, const char *pathname, const struct timeval times[2])
{
struct timespec ts[2];
if (times) {
int i;
for (i=0; i<2; i++) {
if (times[i].tv_usec >= 1000000ULL)
return __syscall_ret(-EINVAL);
ts[i].tv_sec = times[i].tv_sec;
ts[i].tv_nsec = times[i].tv_usec * 1000;
}
}
return utimensat(dirfd, pathname, times ? ts : 0, 0);
}
weak_alias(__futimesat, futimesat);
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|