global cleanup to use the new syscall interface
[musl] / src / stat / fstatat.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 int fstatat(int fd, const char *path, struct stat *buf, int flag)
6 {
7         return syscall(SYS_fstatat, fd, path, buf, flag);
8 }
9
10 LFS64(fstatat);