mirror of https://github.com/mgba-emu/mgba.git
Util: Add ifndef guard for UNUSED define
This commit is contained in:
parent
2f1cb61d01
commit
f7ac90d74e
|
@ -56,7 +56,9 @@ typedef intptr_t ssize_t;
|
|||
#define SSIZE_MAX ((ssize_t) (SIZE_MAX >> 1))
|
||||
#endif
|
||||
|
||||
#ifndef UNUSED
|
||||
#define UNUSED(V) (void)(V)
|
||||
#endif
|
||||
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.141592654f
|
||||
|
|
Loading…
Reference in New Issue