#ifndef WOLF_UNUSED_H #define WOLF_UNUSED_H /** * @brief Macro to avoid unused parameter messages in functions */ #define WOLF_UNUSED( x ) if( 0 && (x) ) { } #endif /* ifndef WOLF_UNUSED_H */