#include // for AT_FDCWD, AT_SYMLINK_NOFOLLOW #include // for fstatat, lstat int lstat(const char *restrict path, struct stat *restrict buf) { return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); }