Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / 5.8.0 / sun4-solaris / auto / DynaLoader / dl_find_symbol_anywhere.al
CommitLineData
86530b38
AT
1# NOTE: Derived from ../../lib/DynaLoader.pm.
2# Changes made here will be lost when autosplit is run again.
3# See AutoSplit.pm.
4package DynaLoader;
5
6#line 399 "../../lib/DynaLoader.pm (autosplit into ../../lib/auto/DynaLoader/dl_find_symbol_anywhere.al)"
7sub dl_find_symbol_anywhere
8{
9 my $sym = shift;
10 my $libref;
11 foreach $libref (@dl_librefs) {
12 my $symref = dl_find_symbol($libref,$sym);
13 return $symref if $symref;
14 }
15 return undef;
16}
17
181;
19# end of DynaLoader::dl_find_symbol_anywhere