/* UNTESTED! */ DIR * d opendir_nofollow(const char * pathname) { int fd = open(pathname, O_DIRECTORY | O_NOFOLLOW); if (fd == -1) { return NULL; } return fdopendir(fd); }