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