xref: /aosp_15_r20/external/musl/compat/time32/stime32.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #define _GNU_SOURCE
2 #include "time32.h"
3 #include <time.h>
4 
__stime32(const time32_t * t)5 int __stime32(const time32_t *t)
6 {
7 	return stime(&(time_t){*t});
8 }
9