mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-07 14:29:33 +01:00
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); }
|