WindowsXP-SP1/tools/cleanuppreprocessedmanifest.pl

9 lines
108 B
Perl
Raw Normal View History

2001-01-01 00:00:00 +01:00
# remove #pragma once and empty lines
while (<>)
{
if (!/#pragma once/ && ! /^$/)
{
print;
}
}