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