*call_tree

This commit is contained in:
Costa Shulyupin 2019-11-06 11:15:48 +02:00
parent db033f3c80
commit f0d776c9fa
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ def cflow_preprocess(a):
s = re.sub(r"^const ", "", s)
s = re.sub(r"\b__initdata\b", "", s)
s = re.sub(r"DEFINE_PER_CPU\((.*),(.*)\)", r"\1 \2", s)
# __attribute__
s = re.sub(r"^(\w+) {$", r"void \1() {", s)
# for line in sys.stdin:
sys.stdout.write(s)