mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03: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;
 | |
| }
 |