WindowsXP/tools/cleanuppreprocessedmanifest.pl
2025-04-27 07:49:33 -04:00

9 lines
108 B
Perl

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