mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			246 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			246 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| 
 | |
| #ifndef NAME
 | |
| int
 | |
| main (void)
 | |
| {
 | |
|   puts ("main");
 | |
| }
 | |
| #else
 | |
| static void __attribute__ ((constructor))
 | |
| init (void)
 | |
| {
 | |
|   puts ("init: " NAME);
 | |
| }
 | |
| static void __attribute__ ((destructor))
 | |
| fini (void)
 | |
| {
 | |
|   puts ("fini: " NAME);
 | |
| }
 | |
| #endif
 |