mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-04-28 13:13:39 +00: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);
|