/usr/lib/perl5/autobox/universal.pm is in libautobox-perl 2.75-1build1.
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 | package # hide from PAUSE
autobox::universal;
use strict;
use warnings;
use autobox (); # don't import()
use Exporter (); # perl 5.8.0 doesn't support "use Exporter qw(import)"
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(type);
1;
|