summaryrefslogtreecommitdiff
path: root/coccinelle
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-07-31 08:28:21 +0200
committerSven Eden <yamakuzure@gmx.net>2017-08-04 14:34:53 +0200
commitf3dca9e3c3373a5817582d4b583077b8f9358604 (patch)
treeea76ef30c91cf194ec7b47f59df44d452f26e10b /coccinelle
parentf3061b4c6efa8275466c56f291eca43d36178213 (diff)
General: Update build system to upstream support of meson+ninja.
Upstream thinks, that the auto tools are too 'legacy', or that they are at least no longer fitting. We follow, as the classic auto tools files have been removed, so no other choice here...
Diffstat (limited to 'coccinelle')
-rw-r--r--coccinelle/free_and_replace.cocci15
1 files changed, 0 insertions, 15 deletions
diff --git a/coccinelle/free_and_replace.cocci b/coccinelle/free_and_replace.cocci
deleted file mode 100644
index 9dcdbf4d4..000000000
--- a/coccinelle/free_and_replace.cocci
+++ /dev/null
@@ -1,15 +0,0 @@
-@@
-expression p, q;
-@@
-- free(p);
-- p = q;
-- q = NULL;
-- return 0;
-+ return free_and_replace(p, q);
-@@
-expression p, q;
-@@
-- free(p);
-- p = q;
-- q = NULL;
-+ free_and_replace(p, q);