summaryrefslogtreecommitdiff
path: root/ext/Fcntl
diff options
context:
space:
mode:
authorChip Salzenberg <salzench@nielsenmedia.com>1996-09-05 18:19:14 -0400
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-09-05 18:19:14 -0400
commitd2d23134f33ef9b3ef4418b08aeb8d0d61b91191 (patch)
tree08b2e6ea61b0dff05dc52d79731d30f24a2666f5 /ext/Fcntl
parentf6b705ef90786c91033644c26163b35ad705ea2e (diff)
downloadperl-d2d23134f33ef9b3ef4418b08aeb8d0d61b91191.tar.gz
No AutoLoader for Fcntl
Just like Socket, Fcntl doesn't need splitting and AutoLoading.
Diffstat (limited to 'ext/Fcntl')
-rw-r--r--ext/Fcntl/Fcntl.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/Fcntl/Fcntl.pm b/ext/Fcntl/Fcntl.pm
index 32a3194326..9d000a1e68 100644
--- a/ext/Fcntl/Fcntl.pm
+++ b/ext/Fcntl/Fcntl.pm
@@ -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__