Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stat
lstat.c
pretty
plain
permalink
blame
history
•
7 lines
•
169 B
1
#include <sys/stat.h>
2
#include <fcntl.h>
3
4
int lstat(const char *restrict path, struct stat *restrict buf)
5
{
6
	return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
7
}