kludge our way around warnings on C<use POSIX; use IO::File;>
Gurusamy Sarathy [Tue, 14 Mar 2000 20:34:19 +0000 (20:34 +0000)]
p4raw-id: //depot/perl@5738

ext/IO/lib/IO/Seekable.pm

index bfcfc13..e09d48b 100644 (file)
@@ -48,7 +48,10 @@ require 5.005_64;
 use Carp;
 use strict;
 our($VERSION, @EXPORT, @ISA);
-use IO::Handle qw(SEEK_SET SEEK_CUR SEEK_END);
+use IO::Handle ();
+# XXX we can't get these from IO::Handle or we'll get prototype
+# mismatch warnings on C<use POSIX; use IO::File;> :-(
+use Fcntl qw(SEEK_SET SEEK_CUR SEEK_END);
 require Exporter;
 
 @EXPORT = qw(SEEK_SET SEEK_CUR SEEK_END);