blob: 3288a332f14f58dc1efc5f2be86b77d50f348eeb [file] [log] [blame]
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#ifndef __NR_lstat
int lstat(const char *path, struct stat *buf)
{
return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
}
#endif /* __NR_lstat */