source: MondoRescue/branches/2.2.5/mindi-busybox/coreutils/tty.c

Last change on this file was 1765, checked in by Bruno Cornec, 17 years ago

Update to busybox 1.7.2

File size: 1.0 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * tty implementation for busybox
4 *
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6 *
[1765]7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
[821]8 */
9
10/* BB_AUDIT SUSv3 compliant */
11/* http://www.opengroup.org/onlinepubs/007904975/utilities/tty.html */
12
[1765]13#include "libbb.h"
[821]14
[1765]15int tty_main(int argc, char **argv);
[821]16int tty_main(int argc, char **argv)
17{
18 const char *s;
[1765]19 USE_INCLUDE_SUSv2(int silent;) /* Note: No longer relevant in SUSv3. */
[821]20 int retval;
21
[1765]22 xfunc_error_retval = 2; /* SUSv3 requires > 1 for error. */
[821]23
[1765]24 USE_INCLUDE_SUSv2(silent = getopt32(argv, "s");)
[821]25
26 /* gnu tty outputs a warning that it is ignoring all args. */
27 bb_warn_ignoring_args(argc - optind);
28
29 retval = 0;
30
[1765]31 s = ttyname(0);
32 if (s == NULL) {
[821]33 /* According to SUSv3, ttyname can on fail with EBADF or ENOTTY.
34 * We know the file descriptor is good, so failure means not a tty. */
35 s = "not a tty";
36 retval = 1;
37 }
[1765]38 USE_INCLUDE_SUSv2(if (!silent) puts(s);)
39 SKIP_INCLUDE_SUSv2(puts(s);)
[821]40
[1765]41 fflush_stdout_and_exit(retval);
[821]42}
Note: See TracBrowser for help on using the repository browser.