]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/compat/time32/stime32.c
Update to musl 1.2.0.
[wasi-libc.git] / libc-top-half / musl / compat / time32 / stime32.c
1 #define _GNU_SOURCE
2 #include "time32.h"
3 #include <time.h>
4
5 int __stime32(const time32_t *t)
6 {
7 return stime(&(time_t){*t});
8 }