Drop `#[no_mangle]` from `*_write_void` to make cbindgen not export
authorMatt Corallo <git@bluematt.me>
Mon, 16 Oct 2023 01:35:28 +0000 (01:35 +0000)
committerMatt Corallo <git@bluematt.me>
Mon, 16 Oct 2023 01:35:28 +0000 (01:35 +0000)
cbindgen recently switched to exporting all `#[no_mangle]` and
`extern "C"` functions. Our `*_write_void` methods are
internal-only but we'd marked them `#[no_mangle]`, which resulted
in them spuriously appearing in `lightning.h`.


No differences found