summaryrefslogtreecommitdiffstats
path: root/perl-install/c.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/c.pm')
-rw-r--r--perl-install/c.pm12
1 files changed, 0 insertions, 12 deletions
diff --git a/perl-install/c.pm b/perl-install/c.pm
deleted file mode 100644
index 0683c0ef8..000000000
--- a/perl-install/c.pm
+++ /dev/null
@@ -1,12 +0,0 @@
-package c; # $Id$
-
-use vars qw($AUTOLOAD);
-
-use c::stuff;
-
-sub AUTOLOAD {
- $AUTOLOAD =~ /::(.*)/;
- goto &{$c::stuff::{$1}};
-}
-
-1;