Sign in
android
/
platform
/
external
/
stg
/
HEAD
/
.
/
test_cases
/
diff_tests
/
symbol
/
ifunc.0.c
blob: 61184fcf609eedccac4ec10c50fb0241d4b2e5f5 [
file
] [
log
] [
blame
]
static
void
my_func
()
{}
__attribute__
((
__used__
))
static
void
(*
resolve_func
(
void
))(
void
)
{
return
my_func
;
}
void
func_changed
()
__attribute__
((
ifunc
(
"resolve_func"
)));
void
func_removed
()
__attribute__
((
ifunc
(
"resolve_func"
)));