diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-01-19 15:32:35 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-01-19 16:00:11 -0500 |
commit | 968dad0ab1f367a087ff4ad503b511dd0c565adc (patch) | |
tree | d13459628d20f7c091850755ebc120fb81156ca3 /elf/tst-order-main.c | |
parent | 86e9235918a715095a1f5bb1c1db28fae7fca22b (diff) | |
download | glibc-968dad0ab1f367a087ff4ad503b511dd0c565adc.tar.gz glibc-968dad0ab1f367a087ff4ad503b511dd0c565adc.tar.xz glibc-968dad0ab1f367a087ff4ad503b511dd0c565adc.zip |
Fix ordering of DSO constructors and destructors.
Diffstat (limited to 'elf/tst-order-main.c')
-rw-r--r-- | elf/tst-order-main.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/elf/tst-order-main.c b/elf/tst-order-main.c new file mode 100644 index 0000000000..80f4f6be18 --- /dev/null +++ b/elf/tst-order-main.c @@ -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); +} |