File Coverage

blib/lib/Devel/CCompat/C99/ScopedVariables.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Devel::CCompat::C99::ScopedVariables;
2              
3 1     1   20413 use strict;
  1         2  
  1         25  
4 1     1   5 use warnings;
  1         1  
  1         29  
5 1     1   5 use XSLoader;
  1         4  
  1         32  
6              
7 1     1   5 use Exporter 5.57 'import';
  1         19  
  1         122  
8              
9             our $VERSION = '0.002';
10             our %EXPORT_TAGS = ( 'all' => [] );
11             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
12              
13             XSLoader::load('Devel::CCompat::C99::ScopedVariables', $VERSION);
14              
15             1;
16             __END__