lstat.c 169 B

1234567
  1. #include <sys/stat.h>
  2. #include <fcntl.h>
  3. int lstat(const char *restrict path, struct stat *restrict buf)
  4. {
  5. return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
  6. }