1#include <stdio.h>
2
3extern void start_b1( void ) __attribute__((constructor));
4extern void finish_b1( void ) __attribute__((destructor));
5
6void
7start_b1( void )
8{
9 printf( format: "start_b1\n" );
10}
11
12void
13finish_b1( void )
14{
15 printf( format: "finish_b1\n" );
16}
17

Provided by KDAB

Privacy Policy
Improve your Profiling and Debugging skills
Find out more

source code of glibc/elf/tst-order-b1.c