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

     1  #include "time32.h"
     2  #include <time.h>
     3  
     4  struct tm *__localtime32_r(time32_t *t, struct tm *tm)
     5  {
     6  	return localtime_r(&(time_t){*t}, tm);
     7  }