struct stat is not posix conform
[glibc.git] / elf / tst-initorderb1.c
blob993ea3fe30768425d7518bcc38f029c96a5dae02
1 #include <stdio.h>
3 extern void start_b1( void ) __attribute__((constructor));
4 extern void finish_b1( void ) __attribute__((destructor));
6 void
7 start_b1( void )
9 printf( "start_b1\n" );
12 void
13 finish_b1( void )
15 printf( "finish_b1\n" );