github.com/afumu/libc@v0.0.6/musl/compat/time32/settimeofday_time32.c (about)

     1  #define _BSD_SOURCE
     2  #include "time32.h"
     3  #include <sys/time.h>
     4  
     5  int __settimeofday_time32(const struct timeval32 *tv32, const void *tz)
     6  {
     7  	return settimeofday(!tv32 ? 0 : (&(struct timeval){
     8  		.tv_sec = tv32->tv_sec,
     9  		.tv_usec = tv32->tv_usec}), 0);
    10  }