drop use of pthread_once in newlocale
[musl.git] / compat / time32 / fstatat_time32.c
blob85dcb008edf621076800d6d2dbed4afae7cb7250
1 #include "time32.h"
2 #include <time.h>
3 #include <string.h>
4 #include <sys/stat.h>
5 #include <stddef.h>
7 struct stat32;
9 int __fstatat_time32(int fd, const char *restrict path, struct stat32 *restrict st32, int flag)
11 struct stat st;
12 int r = fstatat(fd, path, &st, flag);
13 if (!r) memcpy(st32, &st, offsetof(struct stat, st_atim));
14 return r;
17 weak_alias(fstatat, fstatat64);