sys/mount.h: add MS_NOSYMFOLLOW from linux v5.10
[musl.git] / compat / time32 / stime32.c
blobcc76364d3b91e1e8c6f9718a6a90667c3d4934a9
1 #define _GNU_SOURCE
2 #include "time32.h"
3 #include <time.h>
5 int __stime32(const time32_t *t)
7 return stime(&(time_t){*t});