blob: 1ce69fa6b72d4f4ff6ca5e286f7e3fb63a76bba6 [file] [log] [blame]
Eli Bendersky43375bf2015-04-20 07:19:09 -07001import 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