aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-ifunc/pr18841a.c
blob: 72179d2dc979cb80b13946d6f5464c435e8e90ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

extern void test(void);

void zoo(){}

int main()
{
  test();
  printf("OK\n");
  return 0;
}