]> git.lizzy.rs Git - shadowclad.git/blob - src/engine/_prelude.h
Add prelude with UNUSED macro
[shadowclad.git] / src / engine / _prelude.h
1 #ifndef ENGINE_PRELUDE_H_
2 #define ENGINE_PRELUDE_H_
3
4 #ifdef __GNUC__
5
6 #       define UNUSED __attribute__((unused))
7
8 #else // __GNUC__
9
10 #       define UNUSED
11
12 #endif // __GNUC__
13
14 #endif // ENGINE_PRELUDE_H_