Properly handle STT_GNU_IFUNC symbols in do_sym.
[glibc.git] / elf / ifuncmain2.c
blobdb3ba56a02df300466e8f44d27db3dceded5e457
1 /* Test calling one STT_GNU_IFUNC function with 3 different
2 STT_GNU_IFUNC definitions. */
4 #include <stdlib.h>
6 extern int foo1 (void);
8 int
9 main (void)
11 if (foo1 () != -1)
12 abort ();
13 return 0;