Add UNUSED() macro to silent warnings

Use it to silent warning where a function parameter
is unused.
This commit is contained in:
Henrik Andersson 2017-10-17 09:52:42 +02:00
parent 42f3fad2c3
commit 036f0fbebe

View File

@ -24,6 +24,7 @@
extern "C" {
#endif
/* *INDENT-ON* */
#define UNUSED(param) ((void)param)
/* bitmap.c */
RD_BOOL bitmap_decompress(uint8 * output, int width, int height, uint8 * input, int size, int Bpp);
/* cache.c */