1570af302Sopenharmony_ci#include "time32.h" 2570af302Sopenharmony_ci#include <time.h> 3570af302Sopenharmony_ci#include <sys/time.h> 4570af302Sopenharmony_ci#include <sys/select.h> 5570af302Sopenharmony_ci 6570af302Sopenharmony_ciint __select_time32(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval32 *restrict tv32) 7570af302Sopenharmony_ci{ 8570af302Sopenharmony_ci return select(n, rfds, wfds, efds, !tv32 ? 0 : (&(struct timeval){ 9570af302Sopenharmony_ci .tv_sec = tv32->tv_sec, .tv_usec = tv32->tv_usec})); 10570af302Sopenharmony_ci} 11