| 1107 | } |
| 1108 | |
| 1109 | int do_stat(const char *path, STRUCT_STAT *st) |
| 1110 | { |
| 1111 | #ifdef USE_STAT64_FUNCS |
| 1112 | return stat64(path, st); |
| 1113 | #else |
| 1114 | return stat(path, st); |
| 1115 | #endif |
| 1116 | } |
| 1117 | |
| 1118 | int do_lstat(const char *path, STRUCT_STAT *st) |
| 1119 | { |
no test coverage detected