syswrite() wasn't reporting a warning when writing to a filehandle
[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
dc8021d3 11sub have_forkpipe { 0 }
a314697d 12
bb4e9162 131;
14__END__
15
16
17=head1 NAME
18
19Module::Build::Platform::os2 - Builder class for OS/2 platform
20
21=head1 DESCRIPTION
22
23This module provides some routines very specific to the OS/2
24platform.
25
26Please see the L<Module::Build> for the general docs.
27
28=head1 AUTHOR
29
30Ken Williams <ken@cpan.org>
31
32=head1 SEE ALSO
33
34perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
35
36=cut