mailing list of musl libc
 help / color / mirror / code / Atom feed
2d8df9acaf4e8f00b8836448afb49b1902a79059 blob 341 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
#include "time32.h"
#include <time.h>
#include <sys/time.h>
#include <sys/select.h>

int __select_time32(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval32 *restrict tv32)
{
	return select(n, rfds, wfds, efds, !tv32 ? 0 : (&(struct timeval){
		.tv_sec = tv32->tv_sec, .tv_usec = tv32->tv_usec}));
}
debug log:

solving 2d8df9ac ...
found 2d8df9ac 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).