Further harden glibc malloc metadata against 1-byte overflows.
[glibc.git] / elf / tst-initordera2.c
bloba5a9b42ff62c4c986b5b5c210d25180cbda179ca
1 #include <stdio.h>
3 extern void start_a2( void ) __attribute__((constructor));
4 extern void finish_a2( void ) __attribute__((destructor));
6 void
7 start_a2( void )
9 printf( "start_a2\n" );
12 void
13 finish_a2( void )
15 printf( "finish_a2\n" );