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   5002342 use strict;
  53         101  
  53         1600  
4 53     53   394 use warnings;
  53         84  
  53         3113  
5             our $VERSION = '0.03';
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   263 use DynaLoader;
  53         96  
  53         4260  
11             our @ISA = ('DynaLoader');
12 53     53 1 35339 sub dl_load_flags { 0x01 }
13             __PACKAGE__->bootstrap($VERSION);
14             1;
15              
16             __END__