about summary refs log tree commit diff
path: root/elf/tst-order-b1.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-order-b1.c')
-rw-r--r--elf/tst-order-b1.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/elf/tst-order-b1.c b/elf/tst-order-b1.c
deleted file mode 100644
index 993ea3fe30..0000000000
--- a/elf/tst-order-b1.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdio.h>
-
-extern void start_b1( void ) __attribute__((constructor));
-extern void finish_b1( void ) __attribute__((destructor));
-
-void
-start_b1( void )
-{
-  printf( "start_b1\n" );
-}
-
-void
-finish_b1( void )
-{
-  printf( "finish_b1\n" );
-}