Move NEXT from lib to ext.
[p5sagit/p5-mst-13.2.git] / ext / libnet / Hostname.pm.eg
CommitLineData
b3f6f6a6 1#
406c51ee 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;