move static-linked stub dlsym out of dynlink.c
authorRich Felker <dalias@aerifal.cx>
Tue, 26 Jan 2016 00:01:22 +0000 (19:01 -0500)
committerRich Felker <dalias@aerifal.cx>
Tue, 26 Jan 2016 00:04:45 +0000 (19:04 -0500)
commit4058795d4938ea72a27fb3231ce52c69c7e39637
tree4700c69e4af658e33ab0da78b4252fa69cff2bb8
parent14469371cd1efd2be44f0825fec9ad8bb3216da9
move static-linked stub dlsym out of dynlink.c

the function name is still __-prefixed because it requires an asm
wrapper to pass the caller's address in order for RTLD_NEXT to work.

since this was the last function in dynlink.c still used for static
linking, now the whole file is conditional on SHARED being defined.
src/ldso/__dlsym.c [new file with mode: 0644]
src/ldso/dynlink.c