summaryrefslogtreecommitdiffstats
path: root/usr/klibc/lstat.c
blob: 3e8146f9c340df99a5be76089556f85a9305015b (plain)
1
2
3
4
5
6
7
8
9
10
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/syscall.h>

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