mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
fbe50e087a
Since we now over-write the wally malloc/free functions, we need to do so for tests as well. Here we pull up all of the common setup/teardown logic into a separate place, and update the tests that use libwally to use the new common_setup core Changelog-None
8 lines
191 B
C
8 lines
191 B
C
#ifndef LIGHTNING_COMMON_SETUP_H
|
|
#define LIGHTNING_COMMON_SETUP_H
|
|
#include "config.h"
|
|
|
|
void common_setup(const char *argv0);
|
|
void common_shutdown(void);
|
|
#endif /* LIGHTNING_COMMON_SETUP_H */
|