mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09: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);
|