<!-- Thanks for filing a bindgen issue! We appreciate it :-) --> ### Input C/C++ Header ```C++ int foo(void); ``` ### Bindgen Invocation ``` $ bindgen input.h ``` ### Actual Results ```rust /* 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 ...