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