diff options
Diffstat (limited to 'src/stat/lstat.c')
-rw-r--r-- | src/stat/lstat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/stat/lstat.c b/src/stat/lstat.c new file mode 100644 index 0000000..6822fca --- /dev/null +++ b/src/stat/lstat.c @@ -0,0 +1,7 @@ +#include <sys/stat.h> +#include <fcntl.h> + +int lstat(const char *restrict path, struct stat *restrict buf) +{ + return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); +} |