summaryrefslogtreecommitdiff
path: root/include/wolf/port/unused.h
blob: c18ed27b7034de2c3a1148ec2d243b3c1a7a4b23 (plain)
1
2
3
4
5
6
7
8
9
#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 */