mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
7f15f86718
Changelog-Added: libhsmd: Added python bindings for `libhsmd`
10 lines
340 B
C
10 lines
340 B
C
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
/* The following functions are for some reason referenced but not
|
|
* included in the library. We provide them with dummy implementations
|
|
* here. */
|
|
bool alignment_ok(void *p) { return true; }
|
|
void dev_disconnect_init(int fd) {}
|
|
void CCAN_CLEAR_MEMORY(void *p, size_t len) { wally_clear(p, len); }
|