summaryrefslogtreecommitdiff
path: root/lib/libc/stat/lstat.c
blob: a188f78de1ebab7d69eecc30a3d754f8fe2ab249 (plain)
1
2
3
4
5
6
7
#include <fcntl.h>
#include <sys/stat.h>

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