From: Simon Cozens <simon@netthink.co.uk>
Date: Sat, 24 Mar 2001 17:13:17 +0000 (+0000)
Subject: (Retracted by #9393)
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=98c6514bdbc80090f090382bf2368ec10e19caed;p=p5sagit%2Fp5-mst-13.2.git

(Retracted by #9393)

Subject: [PATCH h2xs] $!{EINVAL} requires "use Errno"
Message-ID: <20010324171317.A13406@netthink.co.uk>

p4raw-id: //depot/perl@9329
---

diff --git a/utils/h2xs.PL b/utils/h2xs.PL
index 896d05f..aad3696 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
 }