| 1190 | } |
| 1191 | |
| 1192 | int do_lstat_at(const char *path, STRUCT_STAT *st) |
| 1193 | { |
| 1194 | #ifdef SUPPORT_LINKS |
| 1195 | return do_xstat_at(path, st, AT_SYMLINK_NOFOLLOW, do_lstat); |
| 1196 | #else |
| 1197 | return do_xstat_at(path, st, 0, do_stat); |
| 1198 | #endif |
| 1199 | } |
| 1200 | |
| 1201 | int do_fstat(int fd, STRUCT_STAT *st) |
| 1202 | { |
no test coverage detected