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

extern void start_a3( void ) __attribute__((constructor));
extern void finish_a3( void ) __attribute__((destructor));

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

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