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