1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2@@
3/* Avoid running this transformation on the mfree function itself */
4position p : script:python() { p[0].current_element != "mfree" };
5expression e;
6@@
7- free@p(e);
8- return NULL;
9+ return mfree(e);
10