diff options
author | Eli Bendersky <eliben@gmail.com> | 2016-02-26 05:39:35 -0800 |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2016-02-26 05:39:35 -0800 |
commit | ad938363e4f0f2bcb8349e0ad77be0f8d4fce56c (patch) | |
tree | bc696f25cc22d6c3c6e9a0751fa6bf5698864f27 /examples/using_cpp_libc.py | |
parent | bf6aa16944ed88d6b9135a8b185e1bc31ad4c30b (diff) | |
download | pycparser-ad938363e4f0f2bcb8349e0ad77be0f8d4fce56c.tar.gz |
Clarify where examples should be run from
Diffstat (limited to 'examples/using_cpp_libc.py')
-rw-r--r-- | examples/using_cpp_libc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/using_cpp_libc.py b/examples/using_cpp_libc.py index bc529a0..4fdf881 100644 --- a/examples/using_cpp_libc.py +++ b/examples/using_cpp_libc.py @@ -25,7 +25,6 @@ if __name__ == "__main__": filename = 'examples/c_files/year.c' ast = parse_file(filename, use_cpp=True, - cpp_path='cpp', + cpp_path='cpp', cpp_args=r'-Iutils/fake_libc_include') - ast.show() |