windows-nt/Source/XPSP1/NT/tools/cleanuppreprocessedmanifest.pl

9 lines
100 B
Perl
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
# remove #pragma once and empty lines
while (<>)
{
if (!/#pragma once/ && ! /^$/)
{
print;
}
}