macro to avoid unused variable warning

This commit is contained in:
overflowerror 2017-03-10 23:19:04 +01:00
parent decad27c3f
commit 1d47d2e809

6
misc/unused.h Normal file
View file

@ -0,0 +1,6 @@
#ifndef UNUSED_H
#define UNUSED_H
#define UNUSED(v) (v = v);
#endif