summaryrefslogtreecommitdiff
path: root/elf/tst-order-b2.c
blob: 3334dda0a9fc754e097fbb7a9d4fb18b9fc5a6bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

extern void start_b2( void ) __attribute__((constructor));
extern void finish_b2( void ) __attribute__((destructor));

void
start_b2( void )
{
  printf( "start_b2\n" );
}

void
finish_b2( void )
{
  printf( "finish_b2\n" );
}