github.com/afumu/libc@v0.0.6/musl/compat/time32/__xstat.c (about) 1 #include "time32.h" 2 #include <sys/stat.h> 3 4 struct stat32; 5 6 int __fxstat64(int ver, int fd, struct stat32 *buf) 7 { 8 return __fstat_time32(fd, buf); 9 } 10 11 int __fxstatat64(int ver, int fd, const char *path, struct stat32 *buf, int flag) 12 { 13 return __fstatat_time32(fd, path, buf, flag); 14 } 15 16 int __lxstat64(int ver, const char *path, struct stat32 *buf) 17 { 18 return __lstat_time32(path, buf); 19 } 20 21 int __xstat64(int ver, const char *path, struct stat32 *buf) 22 { 23 return __stat_time32(path, buf); 24 }