Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
v239-38
/
.
/
coccinelle
/
exit-0.cocci
blob: 8b81600579a661bdcb6aa0d036827f3c5a0616ed [
file
] [
log
] [
blame
] [
raw
]
@@
@@
-
exit
(
0
);
+
exit
(
EXIT_SUCCESS
);
@@
@@
-
_exit
(
0
);
+
_exit
(
EXIT_SUCCESS
);
@@
@@
-
exit
(
1
);
+
exit
(
EXIT_FAILURE
);
@@
@@
-
_exit
(
1
);
+
_exit
(
EXIT_FAILURE
);