sbase/tty.c

32 lines
409 B
C
Raw Normal View History

2011-06-02 20:15:35 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <unistd.h>
#include "util.h"
static void
usage(void)
{
enprintf(2, "usage: %s\n", argv0);
}
2011-06-02 20:15:35 +00:00
int
main(int argc, char *argv[])
2011-06-02 20:15:35 +00:00
{
char *tty;
ARGBEGIN {
default:
usage();
} ARGEND
if (argc)
usage();
tty = ttyname(STDIN_FILENO);
puts(tty ? tty : "not a tty");
2015-02-07 21:00:28 +00:00
enfshut(2, stdout, "<stdout>");
return !tty;
2011-06-02 20:15:35 +00:00
}