diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-10-10 13:03:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-10-10 13:03:27 +0000 |
commit | eaf1f7e94354b3bf37db6864de8364ffbda223f7 (patch) | |
tree | 05731f231be1d45508a726543a7f01226dacd0b1 /perl-install/c.pm | |
parent | 5e3f79e9a036b95eb9508746a5e47acda54586b0 (diff) | |
download | drakx-backup-do-not-use-eaf1f7e94354b3bf37db6864de8364ffbda223f7.tar drakx-backup-do-not-use-eaf1f7e94354b3bf37db6864de8364ffbda223f7.tar.gz drakx-backup-do-not-use-eaf1f7e94354b3bf37db6864de8364ffbda223f7.tar.bz2 drakx-backup-do-not-use-eaf1f7e94354b3bf37db6864de8364ffbda223f7.tar.xz drakx-backup-do-not-use-eaf1f7e94354b3bf37db6864de8364ffbda223f7.zip |
no_comment
Diffstat (limited to 'perl-install/c.pm')
-rw-r--r-- | perl-install/c.pm | 12 |
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; |