my_func()1 static void my_func() {} 2 3 __attribute__((__used__)) resolve_func(void)4 static void (*resolve_func(void))(void) { 5 return my_func; 6 } 7 8 void func() __attribute__((ifunc("resolve_func"))); 9