]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/ifuncmain2.c
install.texi: Build was tested with binutils 2.41 (just released)
[thirdparty/glibc.git] / elf / ifuncmain2.c
CommitLineData
2f083d75
L
1/* Test calling one STT_GNU_IFUNC function with 3 different
2 STT_GNU_IFUNC definitions. */
3
4#include <stdlib.h>
5
2f083d75
L
6extern int foo1 (void);
7
8int
9main (void)
10{
11 if (foo1 () != -1)
12 abort ();
13 return 0;
14}