Windows-Server-2003/tools/cleanuppreprocessedmanifest.pl

9 lines
100 B
Perl
Raw Normal View History

2024-08-04 01:28:15 +02:00
# remove #pragma once and empty lines
while (<>)
{
if (!/#pragma once/ && ! /^$/)
{
print;
}
}