This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Text::ParseWords from ext/ to cpan/
[perl5.git] / cpan / libnet / Hostname.pm.eg
1 #
2
3 package Sys::Hostname;
4
5 use Net::Domain qw(hostname);
6 use Carp;
7
8 require Exporter;
9 @ISA = qw(Exporter);
10 @EXPORT = qw(hostname);
11
12 carp "deprecated package 'Sys::Hostname', use Net::Domain" if $^W;
13
14 1;