diff options
author | Harmen <harm@dds.nl> | 2009-11-05 23:09:13 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-11-08 15:49:35 +0100 |
commit | c20642991d8e8afa0a97a45a55f0f04df68e5245 (patch) | |
tree | 5eb32a4d6d935c47d4de7cb5e7e5293ac4ffade2 /utils | |
parent | f7461760003db2ce68155c97ea6c1658e96fcd27 (diff) | |
download | perl-c20642991d8e8afa0a97a45a55f0f04df68e5245.tar.gz |
'use strict' and 'use warnings' in test generated by h2xs
Diffstat (limited to 'utils')
-rw-r--r-- | utils/h2xs.PL | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/h2xs.PL b/utils/h2xs.PL index 428d9bb99d..8564577428 100644 --- a/utils/h2xs.PL +++ b/utils/h2xs.PL @@ -2100,6 +2100,9 @@ print EX <<_END_; # change 'tests => $tests' to 'tests => last_test_to_print'; +use strict; +use warnings; + _END_ my $test_mod = 'Test::More'; |