Sign in
android
/
platform
/
external
/
stg
/
HEAD
/
.
/
test_cases
/
info_tests
/
symbol
/
ifunc.c
blob: f06f5123d7b129d365f53be96291f5ef049fa363 [
file
] [
log
] [
blame
]
static
void
my_func
()
{}
__attribute__
((
__used__
))
static
void
(*
resolve_func
(
void
))(
void
)
{
return
my_func
;
}
void
func
()
__attribute__
((
ifunc
(
"resolve_func"
)));