WindowsXP/Source/XPSP1/NT/tools/cleanuppreprocessedmanifest.pl
2024-08-03 16:30:48 +02:00

9 lines
100 B
Perl

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