1*c9945492SAndroid Build Coastguard Worker #include <sys/stat.h> 2*c9945492SAndroid Build Coastguard Worker #include <fcntl.h> 3*c9945492SAndroid Build Coastguard Worker lstat(const char * restrict path,struct stat * restrict buf)4*c9945492SAndroid Build Coastguard Workerint lstat(const char *restrict path, struct stat *restrict buf) 5*c9945492SAndroid Build Coastguard Worker { 6*c9945492SAndroid Build Coastguard Worker return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); 7*c9945492SAndroid Build Coastguard Worker } 8