in lib/metafile.pl [39:57]
sub outofdate($$$); # need Prototype
# scratch stuff
my (@files, @all_files, @pfiles, %revs, $curpath, $file);
# check commandline parameters
die "missing parameter(s)\n"
unless defined $ARGV[0] and defined $ARGV[1];
# suffix srcfile
# slurp in directory
$curpath = $ARGV[1];
opendir(DIR, $curpath)
or die "could not open directory '$curpath' ($!), stopped";
@all_files = sort grep {
$_ ne "allmodules$ARGV[0]" and
$_ ne "categories$ARGV[0]"
} grep !/$ignore_files/ => readdir(DIR);