libhsmd: First working build script for libhsmd-python

Changelog-Added: libhsmd: Added python bindings for `libhsmd`
This commit is contained in:
Christian Decker
2021-04-23 15:26:15 +02:00
committed by Rusty Russell
parent 214fdcc9d7
commit 7f15f86718
10 changed files with 5324 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
#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); }