1 // this file should not exist
2 #ifdef __GNUC__
3     #define IS_NOT_USED __attribute__ ((unused))
4 #else
5     #define IS_NOT_USED
6 #endif
nothing(void)7 IS_NOT_USED static void nothing(void)
8 {
9     // do nothing
10 }
11