blob: 77ded5104ca57ba88dbdfc62f5ab10368c8b0620 (
plain)
1
2
3
4
5
6
7
|
#include <fcntl.h> // for AT_FDCWD, AT_SYMLINK_NOFOLLOW
#include <sys/stat.h> // for fstatat, lstat
int lstat(const char *restrict path, struct stat *restrict buf)
{
return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
}
|