pidfile.c: not used anymore
[oweals/busybox.git] / coreutils / tty.c
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  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 /* BB_AUDIT SUSv3 compliant */
11 /* http://www.opengroup.org/onlinepubs/007904975/utilities/tty.html */
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include "busybox.h"
17
18 int tty_main(int argc, char **argv);
19 int tty_main(int argc, char **argv)
20 {
21         const char *s;
22         USE_INCLUDE_SUSv2(int silent;)  /* Note: No longer relevant in SUSv3. */
23         int retval;
24
25         xfunc_error_retval = 2; /* SUSv3 requires > 1 for error. */
26
27         USE_INCLUDE_SUSv2(silent = getopt32(argc, argv, "s");)
28
29         /* gnu tty outputs a warning that it is ignoring all args. */
30         bb_warn_ignoring_args(argc - optind);
31
32         retval = 0;
33
34         if ((s = ttyname(0)) == NULL) {
35         /* According to SUSv3, ttyname can on fail with EBADF or ENOTTY.
36          * We know the file descriptor is good, so failure means not a tty. */
37                 s = "not a tty";
38                 retval = 1;
39         }
40         USE_INCLUDE_SUSv2(if (!silent) puts(s);)
41         SKIP_INCLUDE_SUSv2(puts(s);)
42
43         fflush_stdout_and_exit(retval);
44 }