summaryrefslogtreecommitdiffstats
path: root/test/CC/shared-fixture/mycc.py
blob: b96c31c68b2512d6c89d5f17e6161574805ca421 (plain)
1
2
3
4
5
6
import sys
outfile = open(sys.argv[1], 'wb')
infile = open(sys.argv[2], 'rb')
for l in [l for l in infile.readlines() if l[:6] != b'/*cc*/']:
    outfile.write(l)
sys.exit(0)