Get rid of array-bounds warning in __kernel_rem_pio2[f] with gcc 6.1 -O3.
[glibc.git] / elf / tst-initorderb2.c
blob3334dda0a9fc754e097fbb7a9d4fb18b9fc5a6bd
1 #include <stdio.h>
3 extern void start_b2( void ) __attribute__((constructor));
4 extern void finish_b2( void ) __attribute__((destructor));
6 void
7 start_b2( void )
9 printf( "start_b2\n" );
12 void
13 finish_b2( void )
15 printf( "finish_b2\n" );