fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / stat / __fxstatat.c
1 #include <sys/stat.h>
2 #include "libc.h"
3
4 int __fxstatat(int ver, int fd, const char *path, struct stat *buf, int flag)
5 {
6         return fstatat(fd, path, buf, flag);
7 }
8
9 LFS64(__fxstatat);