Clean up regexec.c, and remove two functions
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / Platform / os2.pm
CommitLineData
bb4e9162 1package Module::Build::Platform::os2;
2
3use strict;
4use Module::Build::Platform::Unix;
5
6use vars qw(@ISA);
7@ISA = qw(Module::Build::Platform::Unix);
8
9sub manpage_separator { '.' }
10
111;
12__END__
13
14
15=head1 NAME
16
17Module::Build::Platform::os2 - Builder class for OS/2 platform
18
19=head1 DESCRIPTION
20
21This module provides some routines very specific to the OS/2
22platform.
23
24Please see the L<Module::Build> for the general docs.
25
26=head1 AUTHOR
27
28Ken Williams <ken@cpan.org>
29
30=head1 SEE ALSO
31
32perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
33
34=cut