(Retracted by #9393)
authorSimon Cozens <simon@netthink.co.uk>
Sat, 24 Mar 2001 17:13:17 +0000 (17:13 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sat, 24 Mar 2001 18:26:57 +0000 (18:26 +0000)
Subject: [PATCH h2xs] $!{EINVAL} requires "use Errno"
Message-ID: <20010324171317.A13406@netthink.co.uk>

p4raw-id: //depot/perl@9329

utils/h2xs.PL

index 896d05f..aad3696 100644 (file)
@@ -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
 }