mailing list of musl libc
 help / color / mirror / code / Atom feed
47a24c1350893504a1e143fad3f6192b1e880f56 blob 254 bytes (raw)

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

int __clock_getres_time32(clockid_t clk, struct timespec32 *ts32)
{
	struct timespec ts;
	int r = clock_getres(clk, &ts);
	if (!r && ts32) {
		ts32->tv_sec = ts.tv_sec;
		ts32->tv_nsec = ts.tv_nsec;
	}
	return r;
}
debug log:

solving 47a24c13 ...
found 47a24c13 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).