diff options
Diffstat (limited to 'ext/B/B.pm')
-rw-r--r-- | ext/B/B.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm index 6661ebac93..8c46479c75 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -6,9 +6,9 @@ # License or the Artistic License, as specified in the README file. # package B; -require DynaLoader; +use XSLoader (); require Exporter; -@ISA = qw(Exporter DynaLoader); +@ISA = qw(Exporter); @EXPORT_OK = qw(minus_c ppname class peekop cast_I32 cstring cchar hash threadsv_names main_root main_start main_cv svref_2object opnumber amagic_generation @@ -259,7 +259,7 @@ sub walksymtable { } } -bootstrap B; +XSLoader::load 'B'; 1; |