forked from aniani/nasm
Fix "carryover" of exclude information from one file to another.
my %foo; doesn't mean %foo is initialized to empty, need my %foo = (); or my %foo = undef; or similar for that.
This commit is contained in:
my %foo; doesn't mean %foo is initialized to empty, need my %foo = (); or my %foo = undef; or similar for that.