android13/development/vndk/tools/header-checker/tests/integration/ifunc/ifunc.c

6 lines
124 B
C

__attribute__((used)) static void *ifunc_resolver() {
return 0;
}
void ifunc() __attribute__((ifunc("ifunc_resolver")));