reintroduce calloc elison of memset for direct-mmapped allocations
[musl.git] / compat / time32 / __xstat.c
blobacfbd3cc522a2fbea6fc448b7f9fe1a9ff2cc13e
1 #include "time32.h"
2 #include <sys/stat.h>
4 struct stat32;
6 int __fxstat64(int ver, int fd, struct stat32 *buf)
8 return __fstat_time32(fd, buf);
11 int __fxstatat64(int ver, int fd, const char *path, struct stat32 *buf, int flag)
13 return __fstatat_time32(fd, path, buf, flag);
16 int __lxstat64(int ver, const char *path, struct stat32 *buf)
18 return __lstat_time32(path, buf);
21 int __xstat64(int ver, const char *path, struct stat32 *buf)
23 return __stat_time32(path, buf);