| 31 | static struct tmp_objdir *the_tmp_objdir; |
| 32 | |
| 33 | static void tmp_objdir_free(struct tmp_objdir *t) |
| 34 | { |
| 35 | strbuf_release(&t->path); |
| 36 | strvec_clear(&t->env); |
| 37 | free(t); |
| 38 | } |
| 39 | |
| 40 | static void tmp_objdir_reparent(const char *name UNUSED, |
| 41 | const char *old_cwd, |
no test coverage detected