fd39ee3d6cfaf425fe056d7fe0388217fab49c65
[musl] / __fxstat.c
1 #include <sys/stat.h>
2 #include "libc.h"
3
4 int __fxstat(int ver, int fd, struct stat *buf)
5 {
6         return fstat(fd, buf);
7 }
8
9 LFS64(__fxstat);