diff options
author | 2000-04-06 17:03:22 +0000 | |
---|---|---|
committer | 2000-04-06 17:03:22 +0000 | |
commit | e2e5c5d36e4398ba94879f0a31b0307421edcfdb (patch) | |
tree | 15b8472335eac9359a0b196bf3480d422401d8ff /gnu/usr.bin/perl/lib/Net/hostent.pm | |
parent | only call get_random_bytes() once in m_pad() (diff) | |
download | wireguard-openbsd-e2e5c5d36e4398ba94879f0a31b0307421edcfdb.tar.xz wireguard-openbsd-e2e5c5d36e4398ba94879f0a31b0307421edcfdb.zip |
perl-5.6.0 + local changes
Diffstat (limited to 'gnu/usr.bin/perl/lib/Net/hostent.pm')
-rw-r--r-- | gnu/usr.bin/perl/lib/Net/hostent.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/lib/Net/hostent.pm b/gnu/usr.bin/perl/lib/Net/hostent.pm index d586358f0a5..6cfde7253cb 100644 --- a/gnu/usr.bin/perl/lib/Net/hostent.pm +++ b/gnu/usr.bin/perl/lib/Net/hostent.pm @@ -1,9 +1,10 @@ package Net::hostent; use strict; +use 5.005_64; +our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS); BEGIN { use Exporter (); - use vars qw(@EXPORT @EXPORT_OK %EXPORT_TAGS); @EXPORT = qw(gethostbyname gethostbyaddr gethost); @EXPORT_OK = qw( $h_name @h_aliases |