aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-ifunc/pr16467b.c
blob: 264f6cff85911614b5f462f87115caddaad4f893 (plain)
1
2
3
4
5
6
7
void new_sd_get_seats(void);
__asm__(".symver new_sd_get_seats,sd_get_seats@LIBSYSTEMD_209");
void (*resolve_sd_get_seats(void)) (void) __asm__ ("sd_get_seats");
void (*resolve_sd_get_seats(void)) (void) {
        return new_sd_get_seats;
}
__asm__(".type sd_get_seats, %gnu_indirect_function");