Make cin be static
[oweals/busybox.git] / tty.c
diff --git a/tty.c b/tty.c
index bbc051f6b6ffe8395b157a756206d8191e709ac2..46201d3e6e65a5fe24636ac0981a7b1f92533aaa 100644 (file)
--- a/tty.c
+++ b/tty.c
@@ -20,7 +20,7 @@
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <sys/types.h>
 
@@ -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);
 }