1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

Fix ordering of DSO constructors and destructors.

This commit is contained in:
Ulrich Drepper
2011-01-19 15:32:35 -05:00
parent 86e9235918
commit 968dad0ab1
19 changed files with 387 additions and 109 deletions

10
elf/tst-order-main.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int
main( int argc, char *argv[] )
{
printf( "main\n" );
exit(EXIT_SUCCESS);
}