88ac6f3c5a120d9dd75245a1fbdbc941687697a9
[musl] / src / stat / fstat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int fstat(int fd, struct stat *buf)
6 {
7         return syscall2(__NR_fstat, fd, (long)buf);
8 }
9
10 LFS64(fstat);