Windows2003-3790/tools/cleanuppreprocessedmanifest.pl
2020-09-30 16:53:55 +02:00

9 lines
108 B
Perl

# remove #pragma once and empty lines
while (<>)
{
if (!/#pragma once/ && ! /^$/)
{
print;
}
}