Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Remove exceptional ‘&’ operator in front of a function name. The Coccinelle semantic patch that is used to make this change is as follows: // @r@ identifier f; @@ f(…) { … } @@ identifier r.f; @@ – &f + f @m@ type T; identifier f; @@ T f(…); @@ …