| 362 | } |
| 363 | |
| 364 | void memleak_init(void) |
| 365 | { |
| 366 | if (getenv("LIGHTNINGD_DEV_MEMLEAK")) { |
| 367 | memleak_track = true; |
| 368 | if (backtrace_state) |
| 369 | add_backtrace_notifiers(NULL); |
| 370 | } |
| 371 | } |
| 372 | |
| 373 | struct print_and_arg { |
| 374 | void PRINTF_FMT(2,3) (*print)(void *arg, const char *fmt, ...); |
no test coverage detected