mailing list of musl libc
 help / color / mirror / code / Atom feed
21db18b2a57c331b5b5379d5bd5ef21e46c2d0a0 blob 374 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
 
#define _GNU_SOURCE
#include <sys/stat.h>
#include <sys/time.h>

int futimes(int fd, const struct timeval tv[2])
{
	if (tv) {
		struct timespec times[2];
		times[0].tv_sec  = tv[0].tv_sec;
		times[0].tv_nsec = tv[0].tv_usec * 1000;
		times[1].tv_sec  = tv[1].tv_sec;
		times[1].tv_nsec = tv[1].tv_usec * 1000;
		return futimens(fd, times);
	} else return futimens(fd, 0);
}
debug log:

solving 21db18b ...
found 21db18b in https://inbox.vuxu.org/musl/20150506221028.GA29076@euler/
found d81d83a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 d81d83a962a8675a2dd74c6717d4c21828093a9d	src/legacy/futimes.c

applying [1/1] https://inbox.vuxu.org/musl/20150506221028.GA29076@euler/
diff --git a/src/legacy/futimes.c b/src/legacy/futimes.c
index d81d83a..21db18b 100644

Checking patch src/legacy/futimes.c...
Applied patch src/legacy/futimes.c cleanly.

index at:
100644 21db18b2a57c331b5b5379d5bd5ef21e46c2d0a0	src/legacy/futimes.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).