]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-order-a1.c
alloc_buffer: Return unqualified pointer type in alloc_buffer_next
[thirdparty/glibc.git] / elf / tst-order-a1.c
CommitLineData
968dad0a
UD
1#include <stdio.h>
2
3extern void start_a1( void ) __attribute__((constructor));
4extern void finish_a1( void ) __attribute__((destructor));
5
6void
7start_a1( void )
8{
9 printf( "start_a1\n" );
10}
11
12void
13finish_a1( void )
14{
15 printf( "finish_a1\n" );
16}