* etc/FOR-RELEASE: Mention generated files.
[bpt/emacs.git] / admin / coccinelle / xzalloc.cocci
1 @@
2 expression x;
3 expression E;
4 @@
5 x =
6 - xmalloc
7 + xzalloc
8 (E)
9 ...
10 - memset (x, 0, E);