blob: f2f43bd9ebfe6bc8a2666f44912aaa9c61713f94 [file] [log] [blame]
#include <errno.h>
#include <sys/stat.h>
int
_fstatat(int dirfd, const char *file, struct stat *st, int flags)
{
errno = ENOSYS;
return -1;
}