]> git.ipfire.org Git - thirdparty/systemd.git/blob - coccinelle/errno-check.cocci
headers: add spdx tags to imported files with a known license
[thirdparty/systemd.git] / coccinelle / errno-check.cocci
1 @@
2 constant c;
3 @@
4 (
5 - errno == -c
6 + errno == c
7 |
8 - errno != -c
9 + errno != c
10 )