commit | 3921e8e23ef7952e2e118e9d534cfc4a221e2450 | [log] [tgz] |
---|---|---|
author | Eli Bendersky <eliben@gmail.com> | Fri May 21 09:05:39 2010 +0300 |
committer | Eli Bendersky <eliben@gmail.com> | Fri May 21 09:05:39 2010 +0300 |
tree | 60efcf9f007a5657422a75ed0aad28cb97cb3fa2 |
initial import from SVN
diff --git a/utils/internal/fake_includes.py b/utils/internal/fake_includes.py new file mode 100644 index 0000000..b55f767 --- /dev/null +++ b/utils/internal/fake_includes.py
@@ -0,0 +1,13 @@ +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() + +