windows-nt/Source/XPSP1/NT/tools/cleanuppreprocessedmanifest.pl
2020-09-26 16:20:57 +08:00

9 lines
100 B
Perl

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