summaryrefslogtreecommitdiff
path: root/examples/func_calls.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/func_calls.py')
-rw-r--r--examples/func_calls.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/func_calls.py b/examples/func_calls.py
index ce70232..d72bd8f 100644
--- a/examples/func_calls.py
+++ b/examples/func_calls.py
@@ -17,7 +17,6 @@ sys.path.extend(['.', '..'])
from pycparser import c_ast, parse_file
-
# A visitor with some state information (the funcname it's looking for)
class FuncCallVisitor(c_ast.NodeVisitor):
def __init__(self, funcname):
@@ -31,10 +30,6 @@ class FuncCallVisitor(c_ast.NodeVisitor):
self.visit(node.args)
-def cpp_supported():
- return platform.system() == 'Linux'
-
-
def show_func_calls(filename, funcname):
ast = parse_file(filename, use_cpp=True)
v = FuncCallVisitor(funcname)