in maxas/MaxAs/MaxAs.pm [733:746]
sub IncludeFile
{
my ($file, $include) = @_;
my ($vol,$dir,$name) = File::Spec->splitpath($file);
local $/;
my $fh;
if (!open $fh, $file)
{
open $fh, File::Spec->catpath(@$include, $name) or die "Could not open file for INCLUDE: $file ($!)\n";
}
my $content = <$fh>;
close $fh;
return $content;
}