From 931acb979ccc37c890411ee57dbf905c7856abb7 Mon Sep 17 00:00:00 2001 From: Nicolas R Date: Thu, 5 Nov 2020 13:47:36 -0700 Subject: [PATCH] Use XSLoader --- Quota/Quota.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Quota/Quota.pm b/Quota/Quota.pm index 40e5dc8..c0b3d97 100644 --- a/Quota/Quota.pm +++ b/Quota/Quota.pm @@ -17,14 +17,14 @@ package Quota; require Exporter; use AutoLoader; -require DynaLoader; +use XSLoader (); -@ISA = qw(Exporter DynaLoader); +@ISA = qw(Exporter); @EXPORT = (); $VERSION = '1.8.1'; -bootstrap Quota; +XSLoader::load( 'Quota', $VERSION ); use Carp; use strict;