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

Fix scope handling during dl_close

This commit is contained in:
Andreas Schwab
2011-08-24 09:32:13 +02:00
parent 22044b48ba
commit 39dd69dfb9
8 changed files with 103 additions and 1 deletions

7
elf/unload8mod2.c Normal file
View File

@@ -0,0 +1,7 @@
extern void mod3 (void);
void
mod2 (void)
{
mod3 ();
}