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

extern void start_b1( void ) __attribute__((constructor));
extern void finish_b1( void ) __attribute__((destructor));

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

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