1 2 3 4 5 6 7 8
#include <errno.h> #include <sys/stat.h> int _lstat(const char *file, struct stat *st) { errno = ENOSYS; return -1; }