summaryrefslogtreecommitdiff
path: root/lib/Automake/XFile.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Automake/XFile.pm')
-rw-r--r--lib/Automake/XFile.pm11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Automake/XFile.pm b/lib/Automake/XFile.pm
index 856661c32..259235f5f 100644
--- a/lib/Automake/XFile.pm
+++ b/lib/Automake/XFile.pm
@@ -71,17 +71,18 @@ and C<getlines> methods to translate C<\r\n> to C<\n>.
use 5.006;
use strict;
-use vars qw($VERSION @EXPORT @EXPORT_OK $AUTOLOAD @ISA);
use Carp;
use Errno;
-use IO::File;
-use File::Basename;
+
use Automake::ChannelDefs;
use Automake::Channels qw(msg);
use Automake::FileUtils;
-
-require Exporter;
require DynaLoader;
+require Exporter;
+use File::Basename;
+use IO::File;
+
+use vars qw($VERSION @EXPORT @EXPORT_OK $AUTOLOAD @ISA);
@ISA = qw(IO::File Exporter DynaLoader);