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