Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / coreutils / tty.c
index 6eebed9fbc3a444e62d00c8253c07949e219fb78..46201d3e6e65a5fe24636ac0981a7b1f92533aaa 100644 (file)
@@ -38,5 +38,5 @@ extern int tty_main(int argc, char **argv)
                else
                        puts("not a tty");
        }
-       return(isatty(0) ? TRUE : FALSE);
+       return(isatty(0) ? EXIT_SUCCESS : EXIT_FAILURE);
 }