blob: b55f767b8e0d8cf2563a4035a0b7651c3679b318 [file] [log] [blame]
Eli Bendersky3921e8e2010-05-21 09:05:39 +03001import os.path
2
3for cur_path, dirs, files in os.walk('.'):
4 if cur_path == '.':
5 for f in files:
6 if f.endswith('.h'):
7 print f
8 fo = open(f, 'w')
9 fo.write('#include "_fake_defines.h"\n')
10 fo.write('#include "_fake_typedefs.h"\n')
11 fo.close()
12
13