fix off-by-one error in checks for implementation-internal signal numbers
[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);