1#include <sys/stat.h>
2#include "syscall.h"
3#include "libc.h"
4
5int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag)
6{
7	return syscall(SYS_fstatat, fd, path, buf, flag);
8}
9
10LFS64(fstatat);
11