blob: 3334dda0a9fc754e097fbb7a9d4fb18b9fc5a6bd [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#include <stdio.h>
2
3extern void start_b2( void ) __attribute__((constructor));
4extern void finish_b2( void ) __attribute__((destructor));
5
6void
7start_b2( void )
8{
9 printf( "start_b2\n" );
10}
11
12void
13finish_b2( void )
14{
15 printf( "finish_b2\n" );
16}