| 27 | } |
| 28 | |
| 29 | static char *opt_set_abspath(const char *arg, char **p) |
| 30 | { |
| 31 | tal_free(*p); |
| 32 | return opt_set_charp(path_join(options_ctx, take(path_cwd(NULL)), arg), |
| 33 | p); |
| 34 | } |
| 35 | |
| 36 | /* Tal wrappers for opt. */ |
| 37 | static void *opt_allocfn(size_t size) |
no test coverage detected