]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/ifuncmain2.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / elf / ifuncmain2.c
1 /* Test calling one STT_GNU_IFUNC function with 3 different
2 STT_GNU_IFUNC definitions. */
3
4 #include <stdlib.h>
5
6 extern int foo1 (void);
7
8 int
9 main (void)
10 {
11 if (foo1 () != -1)
12 abort ();
13 return 0;
14 }