summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Cozens <simon@netthink.co.uk>2001-03-24 17:13:17 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-24 18:26:57 +0000
commit98c6514bdbc80090f090382bf2368ec10e19caed (patch)
tree0c125f3ea88ef648d970099c203538ce113379c0
parentd227fe47da88ebd7d585b9454ed719ae717d6bb8 (diff)
downloadperl-98c6514bdbc80090f090382bf2368ec10e19caed.tar.gz
(Retracted by #9393)
Subject: [PATCH h2xs] $!{EINVAL} requires "use Errno" Message-ID: <20010324171317.A13406@netthink.co.uk> p4raw-id: //depot/perl@9329
-rw-r--r--utils/h2xs.PL2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/h2xs.PL b/utils/h2xs.PL
index 896d05f5c8..aad3696759 100644
--- a/utils/h2xs.PL
+++ b/utils/h2xs.PL
@@ -799,6 +799,7 @@ package $module;
use $compat_version;
use strict;
+use Errno; # For $!{EINVAL}
END
}
else {
@@ -808,6 +809,7 @@ package $module;
use 5.006;
use strict;
use warnings;
+use Errno; # For $!{EINVAL}
END
}