diff options
Diffstat (limited to 'elf/tst-order-b2.c')
-rw-r--r-- | elf/tst-order-b2.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/elf/tst-order-b2.c b/elf/tst-order-b2.c deleted file mode 100644 index 3334dda0a9..0000000000 --- a/elf/tst-order-b2.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <stdio.h> - -extern void start_b2( void ) __attribute__((constructor)); -extern void finish_b2( void ) __attribute__((destructor)); - -void -start_b2( void ) -{ - printf( "start_b2\n" ); -} - -void -finish_b2( void ) -{ - printf( "finish_b2\n" ); -} |