File Coverage

blib/lib/Func/Util.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Func::Util;
2              
3 53     53   4831253 use strict;
  53         94  
  53         1678  
4 53     53   358 use warnings;
  53         84  
  53         3242  
5             our $VERSION = '0.01';
6              
7             # DynaLoader with RTLD_GLOBAL so our C API symbols (funcutil_register_export_xs,
8             # funcutil_register_predicate_xs, etc.) are visible to other XS modules that
9             # link against us at runtime. XSLoader on older Perls doesn't honour dl_load_flags.
10 53     53   341 use DynaLoader;
  53         122  
  53         4076  
11             our @ISA = ('DynaLoader');
12 53     53 1 34787 sub dl_load_flags { 0x01 }
13             __PACKAGE__->bootstrap($VERSION);
14             1;
15              
16             __END__