mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			246 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			246 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <stdio.h>
 | 
						|
 | 
						|
extern void start_b1( void ) __attribute__((constructor));
 | 
						|
extern void finish_b1( void ) __attribute__((destructor));
 | 
						|
 | 
						|
void
 | 
						|
start_b1( void )
 | 
						|
{
 | 
						|
  printf( "start_b1\n" );
 | 
						|
}
 | 
						|
 | 
						|
void
 | 
						|
finish_b1( void )
 | 
						|
{
 | 
						|
  printf( "finish_b1\n" );
 | 
						|
}
 |