Input C/C++ Header
Bindgen Invocation
Actual Results
/* automatically generated by rust-bindgen */
extern "C" {
#[link_name = "\u{1}_foo"]
pub fn foo() -> ::std::os::raw::c_int;
}
I would like the output to not contain the link_name attribute as it shouldn't be necessary here.
I'm on macOS, so all symbols get the _ prefix ...
Input C/C++ Header
Bindgen Invocation
Actual Results
I would like the output to not contain the
link_nameattribute as it shouldn't be necessary here.I'm on macOS, so all symbols get the
_prefix ...