mailing list of musl libc
 help / color / mirror / code / Atom feed
65f11d463413f78b37b7e0511918ffa9569408cb blob 308 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 
#include "time32.h"
#include <time.h>
#include <utime.h>

struct utimbuf32 {
	time32_t actime;
	time32_t modtime;
};

int __utime_time32(const char *path, const struct utimbuf32 *times32)
{
	return utime(path, !times32 ? 0 : (&(struct utimbuf){
		.actime = times32->actime, .modtime = times32->modtime}));
}
debug log:

solving 65f11d46 ...
found 65f11d46 in https://git.vuxu.org/mirror/musl/

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).