ifuncmain2.c 208 B

1234567891011121314
  1. /* Test calling one STT_GNU_IFUNC function with 3 different
  2. STT_GNU_IFUNC definitions. */
  3. #include <stdlib.h>
  4. extern int foo1 (void);
  5. int
  6. main (void)
  7. {
  8. if (foo1 () != -1)
  9. abort ();
  10. return 0;
  11. }