summaryrefslogtreecommitdiffstats
path: root/perl-install/c/stuff.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/c/stuff.pm')
-rw-r--r--perl-install/c/stuff.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/perl-install/c/stuff.pm b/perl-install/c/stuff.pm
new file mode 100644
index 000000000..e9cdbc3bd
--- /dev/null
+++ b/perl-install/c/stuff.pm
@@ -0,0 +1,14 @@
+package c::stuff; # $Id: stuff.pm 214710 2005-12-15 09:14:01Z prigaux $
+
+use strict;
+use vars qw($VERSION @ISA);
+
+require DynaLoader;
+
+@ISA = qw(DynaLoader);
+$VERSION = '0.01';
+# perl_checker: EXPORT-ALL
+
+c::stuff->bootstrap($VERSION);
+
+1;