Sign in
third-party-mirror
/
systemd
/
2398d87694e8af48e92ff8fb5f9cf273f706fb00
/
.
/
coccinelle
/
exit-0.cocci
blob: 8b81600579a661bdcb6aa0d036827f3c5a0616ed [
file
] [
log
] [
blame
]
@@
@@
-
exit
(
0
);
+
exit
(
EXIT_SUCCESS
);
@@
@@
-
_exit
(
0
);
+
_exit
(
EXIT_SUCCESS
);
@@
@@
-
exit
(
1
);
+
exit
(
EXIT_FAILURE
);
@@
@@
-
_exit
(
1
);
+
_exit
(
EXIT_FAILURE
);