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