blob: b55f767b8e0d8cf2563a4035a0b7651c3679b318 [file] [log] [blame]
import os.path
for cur_path, dirs, files in os.walk('.'):
if cur_path == '.':
for f in files:
if f.endswith('.h'):
print f
fo = open(f, 'w')
fo.write('#include "_fake_defines.h"\n')
fo.write('#include "_fake_typedefs.h"\n')
fo.close()