### Input C/C++ Header ```C static inline void f(void) {} ``` ### Bindgen Invocation ``` $ bindgen --wrap-static-fns --experimental input.h ``` ### Actual Results In `/tmp/bindgen/extern.c`: ```C void f__extern() { return f(); } ``` ### Expected Results In C one should avoid returning a call to a `void` function to please `-Wpedantic`: ```C void f__extern() { f(); } ```