From 3e856ce428cabaf6c8d99a2374a1f9a4a05db5f0 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Fri, 1 Dec 2000 02:55:13 +0000 Subject: Stop using TRUE and FALSE for exit status. --- tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tty.c') diff --git a/tty.c b/tty.c index 6eebed9fb..46201d3e6 100644 --- a/tty.c +++ b/tty.c @@ -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); } -- cgit v1.2.3