Ensure that POSIX.pm is strict and warnings compliant throughout if
Nicholas Clark [Mon, 18 Dec 2006 22:04:19 +0000 (22:04 +0000)]
the __END__ is temporarily removed.

p4raw-id: //depot/perl@29587

ext/POSIX/POSIX.pm

index 6aac47a..4f55519 100644 (file)
@@ -1,6 +1,8 @@
 package POSIX;
+use strict;
+use warnings;
 
-our(@ISA, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD, %SIGRT) = ();
+our(@ISA, %EXPORT_TAGS, @EXPORT_OK, @EXPORT, $AUTOLOAD, %SIGRT) = ();
 
 our $VERSION = "1.12";
 
@@ -62,8 +64,6 @@ use AutoLoader 'AUTOLOAD';
 
 package POSIX::SigRt;
 
-use strict;
-
 use AutoLoader 'AUTOLOAD';
 
 use Tie::Hash;