···972972 found = False973973974974 if is_define_proto:975975- r = KernRe(r'^()(' + name + r')\s+')975975+ r = KernRe(r'^(' + name + r')\s+')976976977977 if r.search(prototype):978978 return_type = ''979979- declaration_name = r.group(2)979979+ declaration_name = r.group(1)980980 func_macro = True981981982982 found = True