]> sourceware.org Git - glibc.git/blame - elf/tst-initorderb2.c
Small optimization of dependency sorting
[glibc.git] / elf / tst-initorderb2.c
CommitLineData
968dad0a
UD
1#include <stdio.h>
2
3extern void start_b2( void ) __attribute__((constructor));
4extern void finish_b2( void ) __attribute__((destructor));
5
6void
7start_b2( void )
8{
9 printf( "start_b2\n" );
10}
11
12void
13finish_b2( void )
14{
15 printf( "finish_b2\n" );
16}
This page took 0.04255 seconds and 5 git commands to generate.