1 #if !defined(NEW)
2 
3 extern void example(void) __attribute__((weak));
4 
example(void)5 void example(void) {
6 }
7 
8 #endif  // !defined(NEW)
9