1 2 3 4 5 6 7 8 9
#include <errno.h> #include <sys/stat.h> int _fstatat(int dirfd, const char *file, struct stat *st, int flags) { errno = ENOSYS; return -1; }