Files
third_party_rust_bindgen/tests/headers/inline-function.h
T
2017-01-23 10:22:08 +01:00

7 lines
219 B
C

// bindgen-unstable
/** The point of this test is to _not_ generate these functions. */
inline static int myadd(const int x, const int y) { return x + y; }
static int mysub(const int x, const int y) { return x - y; }