| 222 | #endif |
| 223 | |
| 224 | int exists_in_PATH(const char *command) |
| 225 | { |
| 226 | char *r = locate_in_PATH(command); |
| 227 | int found = r != NULL; |
| 228 | free(r); |
| 229 | return found; |
| 230 | } |
| 231 | |
| 232 | int sane_execvp(const char *file, char * const argv[]) |
| 233 | { |
no test coverage detected