Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / cmdedit.c
index 8115e5259735e0158fcf412d5dd1c773ee5364b1..94b8fc7b17801858056dbb618c6f0b2871632e8d 100644 (file)
--- a/cmdedit.c
+++ b/cmdedit.c
@@ -135,7 +135,7 @@ void clean_up_and_die(int sig)
        cmdedit_reset_term();
        fprintf(stdout, "\n");
        if (sig!=SIGINT)
-               exit(TRUE);
+               exit(EXIT_SUCCESS);
 }
 
 /* Go to HOME position */