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