From: Matt Corallo Date: Mon, 16 Oct 2023 01:35:28 +0000 (+0000) Subject: Drop `#[no_mangle]` from `*_write_void` to make cbindgen not export X-Git-Tag: v0.0.118.0^2~5 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=ed96ce032ac607694f7716a73c28a75eb056953a;hp=ed96ce032ac607694f7716a73c28a75eb056953a;p=ldk-c-bindings Drop `#[no_mangle]` from `*_write_void` to make cbindgen not export 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`. ---