lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | #include <stdio.h> |
2 | |||||
3 | extern void start_b2( void ) __attribute__((constructor)); | ||||
4 | extern void finish_b2( void ) __attribute__((destructor)); | ||||
5 | |||||
6 | void | ||||
7 | start_b2( void ) | ||||
8 | { | ||||
9 | printf( "start_b2\n" ); | ||||
10 | } | ||||
11 | |||||
12 | void | ||||
13 | finish_b2( void ) | ||||
14 | { | ||||
15 | printf( "finish_b2\n" ); | ||||
16 | } |