From: Nicholas Clark Date: Mon, 18 Dec 2006 22:04:19 +0000 (+0000) Subject: Ensure that POSIX.pm is strict and warnings compliant throughout if X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e9b37efe4ad36ff6af8f88cfcf6b4f4d152c37c0;p=p5sagit%2Fp5-mst-13.2.git Ensure that POSIX.pm is strict and warnings compliant throughout if the __END__ is temporarily removed. p4raw-id: //depot/perl@29587 --- diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm index 6aac47a..4f55519 100644 --- a/ext/POSIX/POSIX.pm +++ b/ext/POSIX/POSIX.pm @@ -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;