blob: 582db44292d9965b6a38532d02d739b4d86bc5bb [file] [log] [blame]
#include <sys/stat.h>
#include "syscall.h"
int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag)
{
return syscall(SYS_fstatat, fd, path, buf, flag);
}
weak_alias(fstatat, fstatat64);