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