File Coverage

blib/lib/Devel/AssertC99.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Devel::AssertC99;
2 1     1   2027 use strict;
  1         3  
  1         55  
3 1     1   6 use warnings;
  1         2  
  1         42  
4 1     1   7 use utf8;
  1         2  
  1         9  
5 1     1   35 use Devel::CheckCompiler qw/check_c99_or_exit/;
  1         2  
  1         141  
6              
7 2     2   1612 sub import { check_c99_or_exit() }
8              
9             1;
10             __END__