remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl.git] / src / stat / lstat.c
blob6822fcae4b1edb76d93a49de1361d641ad40d7cc
1 #include <sys/stat.h>
2 #include <fcntl.h>
4 int lstat(const char *restrict path, struct stat *restrict buf)
6 return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);