1
0

fstatat.c 218 B

12345678910
  1. #include <sys/stat.h>
  2. #include "syscall.h"
  3. #include "libc.h"
  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. LFS64(fstatat);