582db44292d9965b6a38532d02d739b4d86bc5bb
[musl] / src / stat / fstatat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3
4 int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag)
5 {
6         return syscall(SYS_fstatat, fd, path, buf, flag);
7 }
8
9 weak_alias(fstatat, fstatat64);