Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / elf / tst-order-a1.c
blobf1612571422dbf844db6a4f9ab010e0dfdc1c82d
1 #include <stdio.h>
3 extern void start_a1( void ) __attribute__((constructor));
4 extern void finish_a1( void ) __attribute__((destructor));
6 void
7 start_a1( void )
9 printf( "start_a1\n" );
12 void
13 finish_a1( void )
15 printf( "finish_a1\n" );