2011-06-02 20:15:35 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
2014-11-13 18:54:28 +00:00
|
|
|
#include <unistd.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-10-07 14:50:41 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s\n", argv0);
|
|
|
|
}
|
2011-06-02 20:15:35 +00:00
|
|
|
|
|
|
|
int
|
2013-10-07 14:50:41 +00:00
|
|
|
main(int argc, char *argv[])
|
2011-06-02 20:15:35 +00:00
|
|
|
{
|
|
|
|
char *tty;
|
|
|
|
|
2013-10-07 14:50:41 +00:00
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2015-02-28 18:59:34 +00:00
|
|
|
if (argc)
|
|
|
|
usage();
|
|
|
|
|
2013-10-07 14:50:41 +00:00
|
|
|
tty = ttyname(STDIN_FILENO);
|
|
|
|
puts(tty ? tty : "not a tty");
|
2015-02-07 21:00:28 +00:00
|
|
|
|
2015-02-28 18:59:34 +00:00
|
|
|
return !tty;
|
2011-06-02 20:15:35 +00:00
|
|
|
}
|