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, 12 insertions, 0 deletions
diff --git a/perl-install/c.pm b/perl-install/c.pm
new file mode 100644
index 000000000..e2cfe0428
--- /dev/null
+++ b/perl-install/c.pm
@@ -0,0 +1,12 @@
+package c;
+
+use vars qw($AUTOLOAD);
+
+use c::stuff;
+
+sub AUTOLOAD {
+ $AUTOLOAD =~ /::(.*)/;
+ goto &{$c::stuff::{$1}};
+}
+
+1;