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