#
# This library is no longer being maintained, and is included for backward
# compatibility with Perl 4 programs which may require it.
#
# In particular, this should not be used as an example of modern Perl
# programming techniques.
#
# Suggested alternative: FileCache
# Open in their package.
open($_[0], $_[1]);
}
# Close as well
close($_[0]);
}
# But only this sub name is visible to them.
sub cacheout {
package cacheout;
($file) = @_;
}
|| die "Can't create $file: $!\n";
}
}
package cacheout;
$seq = 0;
$numopen = 0;
local($_, $.);
while (<PARAM>) {
}
close PARAM;
}
1;