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)7IS_NOT_USED static void nothing(void) 8 { 9 // do nothing 10 } 11
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)7IS_NOT_USED static void nothing(void) 8 { 9 // do nothing 10 } 11