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