This file is indexed.

/usr/share/perl5/ExtUtils/Typemap/Type.pm is in libextutils-typemap-perl 1.00-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package ExtUtils::Typemap::Type;
use 5.006001;
use strict;
use warnings;
our $VERSION = '1.00';
use Carp qw(croak);
use ExtUtils::Typemap;
use ExtUtils::Typemaps::Type;
our @ISA = qw(ExtUtils::Typemaps::Type);

=head1 NAME

ExtUtils::Typemap::Type - Entry in the TYPEMAP section of a typemap

=head1 SYNOPSIS

Use L<ExtUtils::Typemaps::Type> instead!

=head1 DESCRIPTION

Use L<ExtUtils::Typemaps::Type> instead! And find the explanation
at L<ExtUtils::Typemap>.

=head1 SEE ALSO

L<ExtUtils::Typemaps>

L<ExtUtils::Typemaps::Type>

=head1 AUTHOR

Steffen Mueller C<<smueller@cpan.org>>

=head1 COPYRIGHT & LICENSE

Copyright 2009, 2010, 2011 Steffen Mueller

This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.

=cut

1;