blob: 93dd23e770e2c98a82d4e21b97016efadf987ca0 [file] [log] [blame]
#include <errno.h>
#include <sys/stat.h>
int lstat(const char *name, struct stat *buf)
{
errno = ENOSYS;
return -1;
}