]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/tst-order-a3.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / elf / tst-order-a3.c
1 #include <stdio.h>
2
3 extern void start_a3( void ) __attribute__((constructor));
4 extern void finish_a3( void ) __attribute__((destructor));
5
6 void
7 start_a3( void )
8 {
9 printf( "start_a3\n" );
10 }
11
12 void
13 finish_a3( void )
14 {
15 printf( "finish_a3\n" );
16 }