diff options
Diffstat (limited to 'os2/OS2/REXX/DLL/DLL.pm')
-rw-r--r-- | os2/OS2/REXX/DLL/DLL.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/os2/OS2/REXX/DLL/DLL.pm b/os2/OS2/REXX/DLL/DLL.pm index f9be9e433c..09e3e37a08 100644 --- a/os2/OS2/REXX/DLL/DLL.pm +++ b/os2/OS2/REXX/DLL/DLL.pm @@ -3,9 +3,7 @@ package OS2::DLL; our $VERSION = '1.00'; use Carp; -use DynaLoader; - -@ISA = qw(DynaLoader); +use XSLoader; sub AUTOLOAD { $AUTOLOAD =~ /^OS2::DLL::.+::(.+)$/ @@ -86,7 +84,7 @@ EOE return 1; } -bootstrap OS2::DLL; +XSLoader::load 'OS2::DLL'; 1; __END__ |