mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
17 lines
160 B
Plaintext
17 lines
160 B
Plaintext
|
@@
|
||
|
@@
|
||
|
- exit(0);
|
||
|
+ exit(EXIT_SUCCESS);
|
||
|
@@
|
||
|
@@
|
||
|
- _exit(0);
|
||
|
+ _exit(EXIT_SUCCESS);
|
||
|
@@
|
||
|
@@
|
||
|
- exit(1);
|
||
|
+ exit(EXIT_FAILURE);
|
||
|
@@
|
||
|
@@
|
||
|
- _exit(1);
|
||
|
+ _exit(EXIT_FAILURE);
|