mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
15 lines
208 B
C
15 lines
208 B
C
/* Test calling one STT_GNU_IFUNC function with 3 different
|
|
STT_GNU_IFUNC definitions. */
|
|
|
|
#include <stdlib.h>
|
|
|
|
extern int foo1 (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (foo1 () != -1)
|
|
abort ();
|
|
return 0;
|
|
}
|