This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[PATCH] Run ICMP ping tests on Windows as long as we have admin privs
[perl5.git] / lib / Net / Hostname.eg
CommitLineData
406c51ee
JH
1# This is an example Hostname.pm.
2
3package Sys::Hostname;
4
5use Net::Domain qw(hostname);
6use Carp;
7
8require Exporter;
9@ISA = qw(Exporter);
10@EXPORT = qw(hostname);
11
12carp "deprecated package 'Sys::Hostname', use Net::Domain" if $^W;
13
141;