math: add empty __invtrigl.s to i386 and x86_64
[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);