summaryrefslogtreecommitdiffstats
path: root/perl-install/c/stuff.pm
blob: 72b5b0bd344b98de0e9a84eeab4710dff688c00d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package c::stuff;

use strict;
use vars qw($VERSION @ISA);

require DynaLoader;

@ISA = qw(DynaLoader);
$VERSION = '0.01';
# perl_checker: EXPORT-ALL

c::stuff->bootstrap($VERSION);

1;