You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
515 B
19 lines
515 B
# NOTE: Derived from ../LIB\DynaLoader.pm.
|
|
# Changes made here will be lost when autosplit is run again.
|
|
# See AutoSplit.pm.
|
|
package DynaLoader;
|
|
|
|
#line 375 "../LIB\DynaLoader.pm (autosplit into ..\lib\auto\DynaLoader\dl_find_symbol_anywhere.al)"
|
|
sub dl_find_symbol_anywhere
|
|
{
|
|
my $sym = shift;
|
|
my $libref;
|
|
foreach $libref (@dl_librefs) {
|
|
my $symref = dl_find_symbol($libref,$sym);
|
|
return $symref if $symref;
|
|
}
|
|
return undef;
|
|
}
|
|
|
|
1;
|
|
# end of DynaLoader::dl_find_symbol_anywhere
|