I generally compile with -Wall -Werror
Unfortunately, the VCOS_INLINE_DECL macro used for some mmal functions generates a warning, because I get the inline declaration but not the definition.
This comes from, for example, vcos_platform_types.h.
How am I supposed to #define/#include these headers to avoid this warning?
(I already tried -DVCOS_INLINE_DECL=extern, but that is overridden in vcos_types.h when NDEBUG is defined)