1 2 3 4 5 6 7 8
#include <fcntl.h> #include <sys/stat.h> #include <syscall.h> int fstat(int fildes, struct stat *buf) { return fstatat(fildes, "", buf, 0); }