No AutoLoader for Fcntl
Chip Salzenberg [Thu, 5 Sep 1996 22:19:14 +0000 (18:19 -0400)]
Just like Socket, Fcntl doesn't need splitting and AutoLoading.

ext/Fcntl/Fcntl.pm

index 32a3194..9d000a1 100644 (file)
@@ -26,7 +26,6 @@ pack up your own arguments to pass as args for locking functions, etc.
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
 
 require Exporter;
-use AutoLoader;
 require DynaLoader;
 @ISA = qw(Exporter DynaLoader);
 $VERSION = "1.00";
@@ -66,8 +65,4 @@ sub AUTOLOAD {
 
 bootstrap Fcntl $VERSION;
 
-# Preloaded methods go here.  Autoload methods go after __END__, and are
-# processed by the autosplit program.
-package Fcntl; # return to package Fcntl so AutoSplit is happy
 1;
-__END__