fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / stat / __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);